summaryrefslogtreecommitdiff
path: root/src/components/channellist/classic/guildlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/channellist/classic/guildlist.cpp')
-rw-r--r--src/components/channellist/classic/guildlist.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/channellist/classic/guildlist.cpp b/src/components/channellist/classic/guildlist.cpp
index ca7c96f..53ba1d7 100644
--- a/src/components/channellist/classic/guildlist.cpp
+++ b/src/components/channellist/classic/guildlist.cpp
@@ -4,7 +4,10 @@
class GuildListDMsButton : public Gtk::EventBox {
public:
GuildListDMsButton() {
- m_img.property_pixbuf() = Abaddon::Get().GetImageManager().GetPlaceholder(48);
+ set_size_request(48, 48);
+
+ m_img.property_icon_name() = "user-available-symbolic"; // meh
+ m_img.property_icon_size() = Gtk::ICON_SIZE_DND;
add(m_img);
show_all_children();
}