Fixed the problem that m_pCleanUpButton UI is displayed empty when NoIcons=1.#2273
Fixed the problem that m_pCleanUpButton UI is displayed empty when NoIcons=1.#2273DavidXanatos merged 2 commits intosandboxie-plus:masterfrom okrc:okrc-patch-1
Conversation
isaak654
left a comment
There was a problem hiding this comment.
I think there should be a vertical separator between "Keep terminated" and "Cleanup".
Added. |
|
Of course, my last review still stands (merging or not). |
|
I have commented out the separator, its intended that the vertical bars are not ever ware, rest of the changes are in and active |
This might be fine, but the visual inconsistency with Win7 (which is still supported in SBIE at this time) is still there. |
|
@isaak654 I zoomed in several times and found that this problem also exists on Windows 11, which is supposed to be caused by m_pMenuBar. Sandboxie/SandboxiePlus/SandMan/SandMan.cpp Lines 175 to 181 in af32bd5
QWidget* pMenuWidget = new QWidget(this);
m_pMenuLayout = new QHBoxLayout(pMenuWidget);
m_pMenuLayout->setContentsMargins(0, 0, 0, 0);
//m_pMenuLayout->addWidget(m_pMenuBar);
m_pMenuLayout->setMenuBar(m_pMenuBar);
//m_pMenuLayout->addWidget(m_pLabel);
//m_pMenuLayout->addStretch(10);
setMenuWidget(pMenuWidget);It seems to be solved. |
|
@okrc |

Fixed the problem that


m_pCleanUpButtonUI is displayed empty whenNoIcons=1.