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 b3c12bf commit 0fd89e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ jobs:
with:
path: build
- run: python src/build.py merge ${{ matrix.architecture }}
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.fname }}
path: src/build/${{matrix.fname}}.zip
- uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.loadversion.outputs.version }}
Expand Down
3 changes: 1 addition & 2 deletions src/LunaTranslator/gui/dialog_savedgame_setting.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,11 +337,10 @@ def valid(idx, x):
if x:
if combo.currentIndex() == 0:
combo.setCurrentIndex(idx + 1)
combo.setRowVisible(idx + 1, True)
else:
if combo.currentIndex() == idx + 1:
combo.setCurrentIndex(0)
combo.setRowVisible(idx + 1, False)
combo.setRowVisible(idx + 1, x)

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

0 comments on commit 0fd89e5

Please sign in to comment.