diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-01-26 17:02:05 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-01-26 17:02:05 -0500 |
commit | d78fde45d49e298016e87fcec203a9877348428b (patch) | |
tree | 35ec7bc00573d5231a8702cb988d1fcc62982680 /components/statusindicator.hpp | |
parent | 7334a4db72e148c825df70b4f385aad0a2abeefe (diff) | |
download | abaddon-portaudio-d78fde45d49e298016e87fcec203a9877348428b.tar.gz abaddon-portaudio-d78fde45d49e298016e87fcec203a9877348428b.zip |
make status indicator colors customizable
Diffstat (limited to 'components/statusindicator.hpp')
-rw-r--r-- | components/statusindicator.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/statusindicator.hpp b/components/statusindicator.hpp index 9c7382e..9949b0d 100644 --- a/components/statusindicator.hpp +++ b/components/statusindicator.hpp @@ -1,6 +1,7 @@ #pragma once #include <gtkmm.h> #include "../discord/snowflake.hpp" +#include "../discord/activity.hpp" class StatusIndicator : public Gtk::Widget { public: @@ -22,9 +23,8 @@ protected: Glib::RefPtr<Gdk::Window> m_window; -private: void CheckStatus(); Snowflake m_id; - Gdk::RGBA m_color; + PresenceStatus m_status; }; |