diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2022-12-24 02:44:56 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2022-12-24 02:44:56 -0500 |
commit | d2cbe00af25bacd40fc4c55191bf9c9073aca1bf (patch) | |
tree | c9e1132258c77b5c1c084cc5c323370b0afbb103 /src/components/channels.hpp | |
parent | 1ba3daa04ac374504a5cdf62cb5fde44f12027bc (diff) | |
download | abaddon-portaudio-d2cbe00af25bacd40fc4c55191bf9c9073aca1bf.tar.gz abaddon-portaudio-d2cbe00af25bacd40fc4c55191bf9c9073aca1bf.zip |
colors, fallback if guild_folders is empty
Diffstat (limited to 'src/components/channels.hpp')
-rw-r--r-- | src/components/channels.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/channels.hpp b/src/components/channels.hpp index 37a3610..6ceaada 100644 --- a/src/components/channels.hpp +++ b/src/components/channels.hpp @@ -61,6 +61,7 @@ protected: Gtk::TreeModelColumn<Glib::RefPtr<Gdk::PixbufAnimation>> m_icon_anim; Gtk::TreeModelColumn<int64_t> m_sort; Gtk::TreeModelColumn<bool> m_nsfw; + Gtk::TreeModelColumn<std::optional<Gdk::RGBA>> m_color; // for folders right now // Gtk::CellRenderer's property_is_expanded only works how i want it to if it has children // because otherwise it doesnt count as an "expander" (property_is_expander) // so this solution will have to do which i hate but the alternative is adding invisible children |