Qt: Dynamically set our "Welcome to" banner in WelcomePage.

This commit is contained in:
Gerald Combs 2022-02-10 17:45:31 -08:00
parent dceffb8e56
commit 6d2ab6900f
2 changed files with 3 additions and 1 deletions

View File

@ -59,6 +59,8 @@ WelcomePage::WelcomePage(QWidget *parent) :
welcome_ui_->captureFilterComboBox->setEnabled(false);
welcome_ui_->mainWelcomeBanner->setText(tr("Welcome to %1").arg(mainApp->applicationName()));
updateStyleSheets();

View File

@ -2382,7 +2382,7 @@ QString LogwolfMainWindow::replaceWindowTitleVariables(QString title)
void LogwolfMainWindow::setWSWindowTitle(QString title)
{
if (title.isEmpty()) {
title = tr("The Wireshark Network Analyzer");
title = tr("The Logwolf System Log Analyzer");
}
if (prefs.gui_prepend_window_title && prefs.gui_prepend_window_title[0]) {