fix: a possible crash of restoreState() in linux with qt6.5.1

fix #952
This commit is contained in:
YiFang Xiao 2023-07-11 21:36:23 +08:00
parent fc7a67d788
commit 0592d2060e

View file

@ -712,24 +712,17 @@ MainWindow::MainWindow( Config::Class & cfg_ ):
// Create tab list menu // Create tab list menu
createTabList(); createTabList();
if ( cfg.mainWindowGeometry.size() )
restoreGeometry( cfg.mainWindowGeometry );
if ( cfg.mainWindowState.size() && !cfg.resetState ) if ( cfg.mainWindowState.size() && !cfg.resetState )
restoreState( cfg.mainWindowState ); restoreState( cfg.mainWindowState );
if ( cfg.mainWindowGeometry.size() )
restoreGeometry( cfg.mainWindowGeometry );
// Show the initial welcome text // Show the initial welcome text
ArticleView * view = getCurrentArticleView();
{ history.enableAdd( false );
ArticleView * view = getCurrentArticleView(); blockUpdateWindowTitle = true;
view->showDefinition( tr( "Welcome!" ), Instances::Group::HelpGroupId );
history.enableAdd( false ); history.enableAdd( cfg.preferences.storeHistory );
blockUpdateWindowTitle = true;
view->showDefinition( tr( "Welcome!" ), Instances::Group::HelpGroupId );
history.enableAdd( cfg.preferences.storeHistory );
}
translateLine->setFocus(); translateLine->setFocus();