Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Silarn committed Sep 13, 2023
1 parent b1f3c7e commit d15a87b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pluginlist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1308,7 +1308,8 @@ QVariant PluginList::tooltipData(const QModelIndex& modelIndex) const
QString type = esp.hasMasterExtension ? "ESM" : "ESP";
toolTip +=
"<br><br>" + tr("This %1 is flagged as an ESL. It will adhere to the %1 load "
"order but the records will be loaded in ESL space.").arg(type);
"order but the records will be loaded in ESL space.")
.arg(type);
}

if (esp.forceDisabled) {
Expand Down

0 comments on commit d15a87b

Please sign in to comment.