mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Don't save window geometry when in fullscreen.
This commit is contained in:
parent
945b40f2a5
commit
b525e0740a
|
@ -18,6 +18,7 @@ Version 1.4.0
|
|||
* saving passwords should now work for much more sites
|
||||
* don't steal Ctrl+B/U/I shortcuts from page
|
||||
* disabled by default opacity effect on tab previews - see BUILDING
|
||||
* improved showing navigation toolbar in fullscreen
|
||||
* fixed scrolling to anchor in background tabs
|
||||
* fixed parsing UTF-8 filenames in Content-Disposition header
|
||||
* fixed crash with context menu in websearchbar and locationbar
|
||||
|
|
|
@ -2115,11 +2115,14 @@ bool QupZilla::quitApp()
|
|||
Settings settings;
|
||||
settings.beginGroup("Browser-View-Settings");
|
||||
settings.setValue("WindowMaximised", windowState().testFlag(Qt::WindowMaximized));
|
||||
settings.setValue("WindowGeometry", saveGeometry());
|
||||
settings.setValue("LocationBarWidth", m_navigationBar->splitter()->sizes().at(0));
|
||||
settings.setValue("WebSearchBarWidth", m_navigationBar->splitter()->sizes().at(1));
|
||||
settings.setValue("SideBarWidth", m_sideBarWidth);
|
||||
settings.setValue("WebViewWidth", m_webViewWidth);
|
||||
|
||||
if (!isFullScreen()) {
|
||||
settings.setValue("WindowGeometry", saveGeometry());
|
||||
}
|
||||
settings.endGroup();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user