Skip to content

Commit

Permalink
Update OptionsWindow.cpp
Browse files Browse the repository at this point in the history
Fixed an issue where changing checkboxes in "Breakout Programs" did not enable the Apply button.
  • Loading branch information
offhub committed Oct 18, 2023
1 parent 10b2cfb commit 59f0931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SandboxiePlus/SandMan/Windows/OptionsWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ COptionsWindow::COptionsWindow(const QSharedPointer<CSbieIni>& pBox, const QStri
//ui.treeBreakout->setEditTriggers(QAbstractItemView::DoubleClicked);
ui.treeBreakout->setItemDelegateForColumn(0, new NoEditDelegate(this));
ui.treeBreakout->setItemDelegateForColumn(1, new ProgramsDelegate(this, ui.treeBreakout, -1, this));
connect(ui.treeBreakout, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(OnForcedChanged(QTreeWidgetItem *, int)));
connect(ui.treeBreakout, SIGNAL(itemChanged(QTreeWidgetItem*, int)), this, SLOT(OnForcedChanged()));
//

// Stop
Expand Down

0 comments on commit 59f0931

Please sign in to comment.