Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HIllya51 committed Nov 3, 2024
1 parent 4c58352 commit b3c12bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LunaTranslator/gui/dialog_savedgame_setting.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,11 +337,11 @@ def valid(idx, x):
if x:
if combo.currentIndex() == 0:
combo.setCurrentIndex(idx + 1)
combo.setRowVisible(idx + 1, True)
combo.setRowVisible(idx + 1, True)
else:
if combo.currentIndex() == idx + 1:
combo.setCurrentIndex(0)
combo.setRowVisible(idx + 1, False)
combo.setRowVisible(idx + 1, False)

for i, key in enumerate(targetmod):
try:
Expand Down

0 comments on commit b3c12bf

Please sign in to comment.