comparison src/gui/theme.cc @ 183:01d259b9c89f

pages/torrents.cc: parse feed descriptions separately services/anilist.cc: use constexpr STL string_view for HTTP queries
author Paper <mrpapersonic@gmail.com>
date Mon, 04 Dec 2023 13:40:42 -0500
parents 39521c47c7a3
children adc20fa321c1
comparison
equal deleted inserted replaced
182:c413e475f496 183:01d259b9c89f
15 1. Dark mode stuff in Qt changes a lot and Qt 5 and Qt 6 are massively different 15 1. Dark mode stuff in Qt changes a lot and Qt 5 and Qt 6 are massively different
16 2. Some widgets, i.e. QTabWidget, QTabBar, etc., just completely IGNORE the QPalette setting 16 2. Some widgets, i.e. QTabWidget, QTabBar, etc., just completely IGNORE the QPalette setting
17 3. I don't want to use the Fusion style on every single platform 17 3. I don't want to use the Fusion style on every single platform
18 4. Windows dark mode support in Qt 6.5 (with Fusion) is completely unavoidable 18 4. Windows dark mode support in Qt 6.5 (with Fusion) is completely unavoidable
19 (not a joke btw, it's retarded) 19 (not a joke btw, it's retarded)
20 These three already make it really hard, but along with that, I don't even remember if 20 These four already make it really difficult, but along with that, I don't even remember if
21 OS X dark mode support even works still; I remember the background of some of the widgets 21 OS X dark mode support even works still; I remember the background of some of the widgets
22 would refuse to update for whatever reason. */ 22 would refuse to update for whatever reason. */
23 23
24 namespace Theme { 24 namespace Theme {
25 25