Skip to content

Commit

Permalink
GUI: fix verbose checkbox behavior in tool dialogs (OSGeo#4257)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrasovaa authored and Mahesh1998 committed Sep 19, 2024
1 parent 7c7ee36 commit e8161f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/wxpython/gui_core/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -2766,7 +2766,7 @@ def OnVerbosity(self, event):
if event.GetId() == verbose.GetId() and quiet.IsChecked():
quiet.SetValue(False)
self.task.get_flag("quiet")["value"] = False
elif verbose.IsChecked():
elif event.GetId() == quiet.GetId() and verbose.IsChecked():
verbose.SetValue(False)
self.task.get_flag("verbose")["value"] = False

Expand Down

0 comments on commit e8161f6

Please sign in to comment.