This commit is contained in:
DavidXanatos 2022-02-06 15:38:57 +01:00
parent 93655e42b2
commit b6d98769d5
2 changed files with 6 additions and 4 deletions

View File

@ -10,7 +10,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- added option to show only boxes in tray with runnign processes [#1186](https://github.com/sandboxie-plus/Sandboxie/issues/1186)
-- additional option show only pinned bixes, in box options a bix can be set to be always shown in theay list (Pinned)
- add reset ui option
- added options menu command to reset the GUI [#1589](https://github.com/sandboxie-plus/Sandboxie/issues/1589)
- added 'Run Un-Sandboxed' context menu option
- added new trigger "OnBoxDelete" that allows to specify a command that is run UNBOXED just before the box content gets deleted
-- note: this can be used as a replacemetn to the DeleteCommand [#591](https://github.com/sandboxie-plus/Sandboxie/issues/591)
@ -40,6 +40,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
-- when using free download manager ad the line manually to your sandboxie.ini
## [1.0.9 / 5.55.9] - 2022-01-31
### Added

View File

@ -15,8 +15,8 @@ CPopUpWindow::CPopUpWindow(QWidget* parent) : QMainWindow(parent)
flags |= Qt::CustomizeWindowHint;
//flags &= ~Qt::WindowContextHelpButtonHint;
//flags &= ~Qt::WindowSystemMenuHint;
flags &= ~Qt::WindowMinMaxButtonsHint;
//flags &= ~Qt::WindowMinimizeButtonHint;
//flags &= ~Qt::WindowMinMaxButtonsHint;
flags &= ~Qt::WindowMaximizeButtonHint;
//flags &= ~Qt::WindowCloseButtonHint;
setWindowFlags(flags);
@ -26,7 +26,7 @@ CPopUpWindow::CPopUpWindow(QWidget* parent) : QMainWindow(parent)
ui.setupUi(centralWidget);
this->setCentralWidget(centralWidget);
setWindowFlags(Qt::Tool);
//setWindowFlags(Qt::Tool);
ui.table->verticalHeader()->hide();
ui.table->horizontalHeader()->hide();