1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-22 20:17:46 +00:00

Fix LOD combo text

This commit is contained in:
Joshua Goins 2024-02-25 11:16:26 -05:00
parent 2ccab76191
commit f967974627

View file

@ -389,7 +389,7 @@ void SingleGearView::reloadGear()
lodCombo->clear();
for (int i = 0; i < gearView->lodCount(); i++) {
lodCombo->addItem(i18nc("@action:inmenu LOD stands for Level of Detail", "LOD %1").arg(i), i);
lodCombo->addItem(i18nc("@action:inmenu LOD stands for Level of Detail", "LOD %1", i), i);
}
if (oldLod < gearView->lodCount()) {
lodCombo->setCurrentIndex(oldLod);