This commit is contained in:
DavidXanatos 2023-08-21 21:12:19 +02:00
parent 68138c6930
commit 0ec1e0fde3
2 changed files with 3 additions and 1 deletions

View File

@ -17,6 +17,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- fixed symbolic links created inside a sandbox not working properly [#3181](https://github.com/sandboxie-plus/Sandboxie/issues/3181)
- fixed Cut text in the Check for Updates popup [#3195] (https://github.com/sandboxie-plus/Sandboxie/issues/3195)

View File

@ -21,6 +21,7 @@ public:
m_pMessageLabel = new QLabel(Prompt);
m_pMessageLabel->setMinimumWidth(300);
//m_pMessageLabel->setMinimumHeight(40);
m_pMessageLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum);
m_pMessageLabel->setWordWrap(true);
//m_pMessageLabel->setAlignment(Qt::AlignTop);
m_pMainLayout->addWidget(m_pMessageLabel, 0, 0, 1, 1);
@ -36,7 +37,7 @@ public:
m_pButtonBox->setStandardButtons(QDialogButtonBox::Cancel);
m_pMainLayout->addWidget(m_pButtonBox, 2, 0, 1, 1);
setFixedSize(sizeHint());
//setFixedSize(sizeHint());
connect(m_pButtonBox,SIGNAL(rejected()),this,SIGNAL(Cancel()));