Skip to content

Commit

Permalink
Merge branch 'custom-columns' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
svetter committed May 13, 2024
2 parents d39eb3d + 12ac4de commit 00f498b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/filter_wizard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,13 @@ void FilterWizardSettingsPage::initializePage()
classesRadiobutton ->setVisible(showIntSettings);
intClassesGroupBox ->setVisible(showIntSettings);
if (!showIntSettings) {
// Qt bug currently prevents these commands from working
// Workaround for QTBUG-125286
exactValueRadiobutton ->setAutoExclusive(false);
exactValueRadiobutton ->setChecked(false);
exactValueRadiobutton ->setAutoExclusive(true);
classesRadiobutton ->setAutoExclusive(false);
classesRadiobutton ->setChecked(false);
classesRadiobutton ->setAutoExclusive(true);
}
}

Expand Down

0 comments on commit 00f498b

Please sign in to comment.