diff options
Diffstat (limited to 'components')
-rw-r--r-- | components/chatmessage.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/components/chatmessage.cpp b/components/chatmessage.cpp index 2579482..5a076c6 100644 --- a/components/chatmessage.cpp +++ b/components/chatmessage.cpp @@ -465,7 +465,11 @@ Gtk::Widget *ChatMessageItemContainer::CreateReactionsComponent(const Message *d // image if (is_stock) { // unicode/stock const auto &pb = emojis.GetPixBuf(reaction.Emoji.Name); - auto *img = Gtk::manage(new Gtk::Image(pb->scale_simple(16, 16, Gdk::INTERP_BILINEAR))); + Gtk::Image *img; + if (pb) + img = Gtk::manage(new Gtk::Image(pb->scale_simple(16, 16, Gdk::INTERP_BILINEAR))); + else + img = Gtk::manage(new Gtk::Image(placeholder)); img->set_can_focus(false); box->add(*img); } else { // custom |