Skip to content

Commit

Permalink
Fix title and message ordering in ContinueCancelDialog.__init__
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Davis authored and Luke Davis committed Sep 3, 2024
1 parent c37844e commit 16cc4e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/gui/utilityDialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(
continueByDefault: bool = True,
) -> None:
self.continueByDefault: bool = continueByDefault
super().__init__(parent, message, title, dialogType)
super().__init__(parent, title, message, dialogType)

def _addButtons(self, buttonHelper) -> None:
"""Override to add Continue and Cancel buttons."""
Expand Down

0 comments on commit 16cc4e2

Please sign in to comment.