diff options
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; }; |