diff options
author | bunnei <bunneidev@gmail.com> | 2018-03-31 00:46:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-31 00:46:18 -0400 |
commit | b3298465cfc0586d8ca145b3ca76216fbe85e34e (patch) | |
tree | 9a62aaa7986b9ce309a9c0197076790f283b31ae /src/yuzu/main.h | |
parent | 9cba0f1794976248edfbf5a701a802c9ae406bb8 (diff) | |
parent | 1b7dc84132b60ac08a062f618f4a3b075a250104 (diff) |
Merge pull request #293 from N00byKing/drkthm
Add Dark Theme (And Theming in General + Icon Theming)
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r-- | src/yuzu/main.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 592ab7d9e..20ff65314 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -64,6 +64,9 @@ signals: */ void EmulationStopping(); + // Signal that tells widgets to update icons to use the current theme + void UpdateThemedIcons(); + private: void InitializeWidgets(); void InitializeDebugWidgets(); @@ -166,6 +169,9 @@ private: QAction* actions_recent_files[max_recent_files_item]; + // stores default icon theme search paths for the platform + QStringList default_theme_paths; + protected: void dropEvent(QDropEvent* event) override; void dragEnterEvent(QDragEnterEvent* event) override; |