mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
fix: Qt6.4/5's maximize bug https://bugreports.qt.io/browse/QTBUG-115074
This commit is contained in:
parent
69905ed92d
commit
1ffd729614
|
@ -741,10 +741,6 @@ MainWindow::MainWindow( Config::Class & cfg_ ):
|
|||
// Create tab list menu
|
||||
createTabList();
|
||||
|
||||
if ( cfg.mainWindowState.size() && !cfg.resetState )
|
||||
restoreState( cfg.mainWindowState );
|
||||
if ( cfg.mainWindowGeometry.size() )
|
||||
restoreGeometry( cfg.mainWindowGeometry );
|
||||
|
||||
#if defined( Q_OS_LINUX )
|
||||
#if ( QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 ) )
|
||||
|
@ -915,6 +911,12 @@ MainWindow::MainWindow( Config::Class & cfg_ ):
|
|||
urlRegistry.endGroup();
|
||||
#endif
|
||||
|
||||
// restore should be called after all UI initialized.
|
||||
if ( cfg.mainWindowState.size() && !cfg.resetState )
|
||||
restoreState( cfg.mainWindowState );
|
||||
if ( cfg.mainWindowGeometry.size() )
|
||||
restoreGeometry( cfg.mainWindowGeometry );
|
||||
|
||||
useSmallIconsInToolbarsTriggered();
|
||||
|
||||
if ( cfg.preferences.checkForNewReleases ) {
|
||||
|
|
Loading…
Reference in a new issue