mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
fix(tray): free icon data on pixbuf update
This commit is contained in:
parent
7bd5454e43
commit
842e8501f9
@ -115,6 +115,11 @@ void waybar::modules::SNI::Item::getAll(GObject *obj, GAsyncResult *res,
|
||||
// TODO: handle change
|
||||
}
|
||||
|
||||
static void
|
||||
pixbuf_data_deleter(const guint8* data) {
|
||||
g_free((void*) data);
|
||||
}
|
||||
|
||||
Glib::RefPtr<Gdk::Pixbuf>
|
||||
waybar::modules::SNI::Item::extractPixBuf(GVariant *variant) {
|
||||
GVariantIter *it;
|
||||
@ -158,7 +163,8 @@ waybar::modules::SNI::Item::extractPixBuf(GVariant *variant) {
|
||||
array[i + 3] = alpha;
|
||||
}
|
||||
return Gdk::Pixbuf::create_from_data(array, Gdk::Colorspace::COLORSPACE_RGB,
|
||||
true, 8, lwidth, lheight, 4 * lwidth);
|
||||
true, 8, lwidth, lheight, 4 * lwidth,
|
||||
&pixbuf_data_deleter);
|
||||
}
|
||||
return Glib::RefPtr<Gdk::Pixbuf>{};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user