diff src/gui/window.cc @ 103:621084cc542c

resources: add icons also remove ye olde qdarkstyle, as it's not even used anymore there's more configuring to OS X bundles now as well, along with more version info on Windows
author Paper <mrpapersonic@gmail.com>
date Fri, 03 Nov 2023 22:52:41 -0400
parents b315f3759c56
children 6d8da6e64d61
line wrap: on
line diff
--- a/src/gui/window.cc	Fri Nov 03 21:32:52 2023 -0400
+++ b/src/gui/window.cc	Fri Nov 03 22:52:41 2023 -0400
@@ -57,6 +57,8 @@
 }
 
 MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent) {
+	setWindowIcon(QIcon(":/favicon.png"));
+
 	main_widget = new QWidget(parent);
 
 	sidebar = new SideBar(main_widget);