зеркало из https://github.com/electron/electron.git
fix floating reference glib warning (#11948)
use gtk_widget_destroy() rather than g_object_unref() on the floating temporary menubar widget that we use to calculate colors
This commit is contained in:
Родитель
55d4d74624
Коммит
56859531cd
|
@ -57,7 +57,7 @@ void GetMenuBarColor(SkColor* enabled,
|
|||
*highlight = GetStyleContextFgColor(sc, GTK_STATE_FLAG_SELECTED);
|
||||
*hover = GetStyleContextFgColor(sc, GTK_STATE_FLAG_PRELIGHT);
|
||||
*background = GetStyleContextBgColor(sc, GTK_STATE_FLAG_NORMAL);
|
||||
g_object_unref(G_OBJECT(menu_bar));
|
||||
gtk_widget_destroy(GTK_WIDGET(menu_bar));
|
||||
}
|
||||
|
||||
#endif // USE_X11
|
||||
|
|
Загрузка…
Ссылка в новой задаче