Skip to content

Commit

Permalink
change title bar
Browse files Browse the repository at this point in the history
  • Loading branch information
dewcked committed Feb 19, 2022
1 parent 0e90365 commit 66b5aca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/mainwindow.cpp
Expand Up @@ -7,7 +7,6 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWi
// Setup UI
ui->setupUi(this);
MainWindow::setupUI();
qDebug() << "asdf";
// Setup Modules
_Submodules = new Submodules::SubmodulesDialog;
connect(_Submodules, &Submodules::SubmodulesDialog::settingFinished, this, &MainWindow::initialize);
Expand All @@ -34,6 +33,7 @@ void MainWindow::setupUI()
MainWindow::setupDarktheme();

// Hide menubar & statusbar
this->setWindowTitle(QString("Streamlinkerino"));
ui->menubar->hide();
ui->statusbar->hide();

Expand Down
1 change: 1 addition & 0 deletions src/submodules.cpp
Expand Up @@ -7,6 +7,7 @@ SubmodulesDialog::SubmodulesDialog(QWidget *parent)
: QDialog(parent), ui(new Ui::SubmodulesDialog), isInit(true)
{
ui->setupUi(this);
this->setWindowTitle(QString("Settings"));
this->hide();
hideAlerts();
setupConnections();
Expand Down

0 comments on commit 66b5aca

Please sign in to comment.