Skip to content
This repository has been archived by the owner on Mar 17, 2024. It is now read-only.

Commit

Permalink
Fixed an issue that when no directories were found in the registry, t…
Browse files Browse the repository at this point in the history
…he button would remain unclickable.
  • Loading branch information
AallynReed committed Jul 14, 2022
1 parent f7768e0 commit 7a07acd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,8 @@ def refreshMods(self, nocheck=False):
continue
ModName = f"{ModType}/{ModFile.name}"
item = QtGui.QStandardItem(ModName)
model.appendRow(item)
model.appendRow(item)
self.pushButton.setEnabled(True)

def comboBoxChanged(self):
if self.comboBox.currentText() == "Overwrite all files":
Expand Down

0 comments on commit 7a07acd

Please sign in to comment.