teknsl

Results 3 comments of teknsl

did this ever work? following is my theory: these directories will need to be readable and writable from the container to register as extension host - (chrome) `~/.config/google-chrome` - (firefox)...

```diff diff --git a/src/singletons/WindowManager.cpp b/src/singletons/WindowManager.cpp index 5718dda2..915f6a78 100644 --- a/src/singletons/WindowManager.cpp +++ b/src/singletons/WindowManager.cpp @@ -163,6 +163,7 @@ WindowManager::WindowManager(const Args &appArgs_, const Paths &paths, settings.streamerModeHideModActions); this->forceLayoutChannelViewsListener.add( settings.streamerModeHideRestrictedUsers); + this->forceLayoutChannelViewsListener.add(this->themes.themeName); this->layoutChannelViewsListener.add(settings.timestampFormat); this->layoutChannelViewsListener.add(fonts.fontChanged); ```...

I think the signal route is a better option, `WindowManager` is already responsible of acting on many other signals (mostly from settings, but still.) Having `Themes` just notify that the...