Skip to content

Commit

Permalink
Fix mod enabled checkbox state being inverted
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryhon0 committed Jan 26, 2025
1 parent 9ed2378 commit d431e7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Injector/ModList.gd
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ func itemEdited() -> void:
var item: TreeItem = List.get_edited()
var modi: ModInfo = item.get_meta("mod")
modi.makeDisabled(!modi.disabled)
item.set_checked(ENABLED_COLUMN, modi.disabled)
item.set_checked(ENABLED_COLUMN, !modi.disabled)

func titleClicked(col: int, mouse: int) -> void:
if mouse != MOUSE_BUTTON_LEFT:
Expand Down
2 changes: 1 addition & 1 deletion Injector/VM_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.1
0.4.2

0 comments on commit d431e7d

Please sign in to comment.