Skip to content

Commit

Permalink
v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Alsweider authored Dec 9, 2023
1 parent 493d3d4 commit 0f9ec60
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ int main(int argc, char *argv[])
QApplication a(argc, argv);
MainWindow w;
w.show();

return a.exec();
}
4 changes: 4 additions & 0 deletions mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ MainWindow::MainWindow(QWidget *parent)
QTimer trayTimer;
trayTimer.singleShot(1000, this, SLOT(hide()));
}

//Standardtext setzen
ui->label->setText("Ready");
}

MainWindow::~MainWindow()
Expand Down Expand Up @@ -275,6 +278,7 @@ void MainWindow::on_pushButton_5_clicked()
void MainWindow::showEvent(QShowEvent* event)
{
QMainWindow::showEvent(event);
// setHotkey(); //Brauchen wir das hier?
}

void MainWindow::closeEvent(QCloseEvent* event)
Expand Down
2 changes: 1 addition & 1 deletion mainwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</sizepolicy>
</property>
<property name="windowTitle">
<string>SpotiQuit 0.9.0</string>
<string>SpotiQuit 0.9.1</string>
</property>
<property name="windowIcon">
<iconset resource="bilder.qrc">
Expand Down

0 comments on commit 0f9ec60

Please sign in to comment.