This commit is contained in:
DavidXanatos 2022-02-26 12:39:08 +01:00
parent a5b8c370b9
commit 2ac8b1321b
3 changed files with 4 additions and 1 deletions

View File

@ -21,7 +21,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed issue with accessing network drives in privacy mode [#1617](https://github.com/sandboxie-plus/Sandboxie/issues/1617) - fixed issue with accessing network drives in privacy mode [#1617](https://github.com/sandboxie-plus/Sandboxie/issues/1617)
- fixed issue with ping in compartment mode [#1608](https://github.com/sandboxie-plus/Sandboxie/issues/1608) - fixed issue with ping in compartment mode [#1608](https://github.com/sandboxie-plus/Sandboxie/issues/1608)
- fixed SandMan UI freezing when a lot of processes are created and closed in a box - fixed SandMan UI freezing when a lot of processes are created and closed in a box
- fixed Editing existing 'Run Menu' Command Line entry not being recognized https://github.com/sandboxie-plus/Sandboxie/issues/1648
- fixed bsod issue in driver (thanks Diversenok)
## [1.0.11 / 5.55.11] - 2022-02-13 ## [1.0.11 / 5.55.11] - 2022-02-13

View File

@ -91,6 +91,7 @@ void COptionsWindow::CreateGeneral()
ui.btnAddCmd->setPopupMode(QToolButton::MenuButtonPopup); ui.btnAddCmd->setPopupMode(QToolButton::MenuButtonPopup);
ui.btnAddCmd->setMenu(pRunBtnMenu); ui.btnAddCmd->setMenu(pRunBtnMenu);
connect(ui.btnDelCmd, SIGNAL(clicked(bool)), this, SLOT(OnDelCommand())); connect(ui.btnDelCmd, SIGNAL(clicked(bool)), this, SLOT(OnDelCommand()));
connect(ui.treeRun, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(OnRunChanged()));
} }
void COptionsWindow::LoadGeneral() void COptionsWindow::LoadGeneral()

View File

@ -50,6 +50,7 @@ private slots:
void OnBrowsePath(); void OnBrowsePath();
void OnAddCommand(); void OnAddCommand();
void OnDelCommand(); void OnDelCommand();
void OnRunChanged() { m_GeneralChanged = true; OnOptChanged(); }
void OnAddGroup(); void OnAddGroup();
void OnAddProg(); void OnAddProg();