mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
Merge pull request #404 from xiaoyifang/fix/restore-max
fix: windows can not restore the Geometry
This commit is contained in:
commit
669be41d9a
|
@ -706,14 +706,7 @@ MainWindow::MainWindow( Config::Class & cfg_ ):
|
||||||
|
|
||||||
connect( &ftsIndexing, &FTS::FtsIndexing::newIndexingName, this, &MainWindow::showFTSIndexingName );
|
connect( &ftsIndexing, &FTS::FtsIndexing::newIndexingName, this, &MainWindow::showFTSIndexingName );
|
||||||
|
|
||||||
#ifndef Q_OS_MAC
|
|
||||||
{
|
|
||||||
if ( cfg.mainWindowGeometry.size() )
|
|
||||||
restoreGeometry( cfg.mainWindowGeometry );
|
|
||||||
if ( cfg.mainWindowState.size() )
|
|
||||||
restoreState( cfg.mainWindowState, 1 );
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
applyProxySettings();
|
applyProxySettings();
|
||||||
|
|
||||||
|
@ -736,21 +729,28 @@ MainWindow::MainWindow( Config::Class & cfg_ ):
|
||||||
|
|
||||||
setWindowTitle( "GoldenDict" );
|
setWindowTitle( "GoldenDict" );
|
||||||
|
|
||||||
#ifdef Q_OS_MAC
|
|
||||||
{
|
|
||||||
if ( cfg.mainWindowGeometry.size() )
|
|
||||||
restoreGeometry( cfg.mainWindowGeometry );
|
|
||||||
if ( cfg.mainWindowState.size() )
|
|
||||||
restoreState( cfg.mainWindowState, 1 );
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
blockUpdateWindowTitle = true;
|
blockUpdateWindowTitle = true;
|
||||||
addNewTab();
|
addNewTab();
|
||||||
|
|
||||||
// Create tab list menu
|
// Create tab list menu
|
||||||
createTabList();
|
createTabList();
|
||||||
|
|
||||||
|
#ifndef Q_OS_MAC
|
||||||
|
{
|
||||||
|
if( cfg.mainWindowGeometry.size() )
|
||||||
|
restoreGeometry( cfg.mainWindowGeometry );
|
||||||
|
if( cfg.mainWindowState.size() )
|
||||||
|
restoreState( cfg.mainWindowState, 1 );
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
{
|
||||||
|
if( cfg.mainWindowGeometry.size() )
|
||||||
|
restoreGeometry( cfg.mainWindowGeometry );
|
||||||
|
if( cfg.mainWindowState.size() )
|
||||||
|
restoreState( cfg.mainWindowState, 1 );
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// Show the initial welcome text
|
// Show the initial welcome text
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue