mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 00:14:06 +00:00
Merge pull request #1060 from xiaoyifang/opt/remove-old-logic
fix: remove old unnecessary logic which blocks updating Windows Title
This commit is contained in:
commit
cc1258fe1a
|
@ -165,7 +165,6 @@ MainWindow::MainWindow( Config::Class & cfg_ ):
|
|||
wordFinder( this ),
|
||||
wordListSelChanged( false ),
|
||||
wasMaximized( false ),
|
||||
blockUpdateWindowTitle( false ),
|
||||
headwordsDlg( nullptr ),
|
||||
ftsIndexing( dictionaries ),
|
||||
ftsDlg( nullptr ),
|
||||
|
@ -734,8 +733,6 @@ MainWindow::MainWindow( Config::Class & cfg_ ):
|
|||
|
||||
setWindowTitle( "GoldenDict-ng" );
|
||||
|
||||
blockUpdateWindowTitle = true;
|
||||
|
||||
// Create tab list menu
|
||||
createTabList();
|
||||
|
||||
|
@ -763,7 +760,6 @@ MainWindow::MainWindow( Config::Class & cfg_ ):
|
|||
addNewTab();
|
||||
ArticleView * view = getCurrentArticleView();
|
||||
history.enableAdd( false );
|
||||
blockUpdateWindowTitle = true;
|
||||
view->showDefinition( tr( "Welcome!" ), Instances::Group::HelpGroupId );
|
||||
history.enableAdd( cfg.preferences.storeHistory );
|
||||
|
||||
|
@ -1945,9 +1941,7 @@ void MainWindow::updateWindowTitle()
|
|||
if ( view ) {
|
||||
QString str = view->getTitle();
|
||||
if ( !str.isEmpty() ) {
|
||||
if ( !blockUpdateWindowTitle )
|
||||
setWindowTitle( tr( "%1 - %2" ).arg( str, "GoldenDict-ng" ) );
|
||||
blockUpdateWindowTitle = false;
|
||||
setWindowTitle( tr( "%1 - %2" ).arg( str, "GoldenDict-ng" ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -155,8 +155,6 @@ private:
|
|||
|
||||
bool wasMaximized; // Window state before minimization
|
||||
|
||||
bool blockUpdateWindowTitle;
|
||||
|
||||
QPrinter & getPrinter(); // Creates a printer if it's not there and returns it
|
||||
|
||||
DictHeadwords * headwordsDlg;
|
||||
|
|
Loading…
Reference in a new issue