1.0.12
This commit is contained in:
parent
a5b8c370b9
commit
2ac8b1321b
|
@ -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 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 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
|
||||
|
|
|
@ -91,6 +91,7 @@ void COptionsWindow::CreateGeneral()
|
|||
ui.btnAddCmd->setPopupMode(QToolButton::MenuButtonPopup);
|
||||
ui.btnAddCmd->setMenu(pRunBtnMenu);
|
||||
connect(ui.btnDelCmd, SIGNAL(clicked(bool)), this, SLOT(OnDelCommand()));
|
||||
connect(ui.treeRun, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(OnRunChanged()));
|
||||
}
|
||||
|
||||
void COptionsWindow::LoadGeneral()
|
||||
|
|
|
@ -50,6 +50,7 @@ private slots:
|
|||
void OnBrowsePath();
|
||||
void OnAddCommand();
|
||||
void OnDelCommand();
|
||||
void OnRunChanged() { m_GeneralChanged = true; OnOptChanged(); }
|
||||
|
||||
void OnAddGroup();
|
||||
void OnAddProg();
|
||||
|
|
Loading…
Reference in New Issue