diff src/gui/window.cc @ 195:975a3f0965e2

locale: only attempt loading locales after QApplication is init'd also the general application stuff and anime list is separated in settings
author Paper <mrpapersonic@gmail.com>
date Thu, 07 Dec 2023 11:14:01 -0500
parents 2d5823df870f
children 84e0a3c4737a
line wrap: on
line diff
--- a/src/gui/window.cc	Thu Dec 07 03:17:05 2023 -0500
+++ b/src/gui/window.cc	Thu Dec 07 11:14:01 2023 -0500
@@ -78,6 +78,10 @@
 
 	qRegisterMetaType<std::vector<std::string>>();
 
+	/* This thread will be destroyed on
+	 * close of the program OR on the destruction
+	 * of MainWindow
+	*/
 	thread.reset(new PlayingThread(this));
 
 	QTimer* timer = new QTimer(this);