diff options
author | Stefano Karapetsas <[email protected]> | 2014-01-17 15:16:45 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-01-17 15:16:45 +0100 |
commit | 5285395fd5db277c9f226efd4ae80ed9b5ae33e7 (patch) | |
tree | 85023d171e1a4a726f511dfdf2970aa5c3af3787 /applets/inhibit/inhibit-applet.c | |
parent | a71d41f59f6525f14dc82c20087c92ce8c4a7e50 (diff) | |
download | mate-power-manager-5285395fd5db277c9f226efd4ae80ed9b5ae33e7.tar.bz2 mate-power-manager-5285395fd5db277c9f226efd4ae80ed9b5ae33e7.tar.xz |
Use draw signal for GTK3
Diffstat (limited to 'applets/inhibit/inhibit-applet.c')
-rw-r--r-- | applets/inhibit/inhibit-applet.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/applets/inhibit/inhibit-applet.c b/applets/inhibit/inhibit-applet.c index b8c8823..2421cef 100644 --- a/applets/inhibit/inhibit-applet.c +++ b/applets/inhibit/inhibit-applet.c @@ -675,8 +675,13 @@ gpm_inhibit_applet_init (GpmInhibitApplet *applet) g_signal_connect (G_OBJECT(applet), "button-press-event", G_CALLBACK(gpm_applet_click_cb), NULL); +#if GTK_CHECK_VERSION (3, 0, 0) + g_signal_connect (G_OBJECT(applet), "draw", + G_CALLBACK(gpm_applet_draw_cb), NULL); +#else g_signal_connect (G_OBJECT(applet), "expose-event", G_CALLBACK(gpm_applet_draw_cb), NULL); +#endif /* We use g_signal_connect_after because letting the panel draw * the background is the only way to have the correct |