Skip to content

Commit

Permalink
Update window.py
Browse files Browse the repository at this point in the history
  • Loading branch information
th3w1zard1 committed Mar 16, 2024
1 parent b0d8f49 commit 5104473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/HolocronToolset/src/toolset/utils/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def openResourceEditor(
if restype in {ResourceType.MDL, ResourceType.MDX}:
editor = MDLEditor(None, installation)

if editor is None and restype.is_plaintext_gff or restype.contents == "gff":
if editor is None and (restype.is_plaintext_gff or restype.contents == "gff"):
editor = GFFEditor(None, installation)

if editor is not None:
Expand Down

0 comments on commit 5104473

Please sign in to comment.