1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 01:22:10 +01:00

[Windows] Don't update transparent margins on close.

This commit is contained in:
S. Razi Alavizadeh 2013-02-23 01:41:33 +03:30
parent f19cb64163
commit c7193162d2

View File

@ -2373,6 +2373,10 @@ bool QupZilla::nativeEvent(const QByteArray &eventType, void* _message, long* re
void QupZilla::applyBlurToMainWindow(bool force)
{
if (isClosing()) {
return;
}
if (!force && (m_actionShowFullScreen->isChecked() || !m_usingTransparentBackground)) {
return;
}