aboutsummaryrefslogtreecommitdiff
path: root/src/idooffscreenproxy.c
Commit message (Collapse)AuthorAgeFilesLines
* add style class "menubar" to the offscreen proxy, this fixes the white ↵Ken VanDine2012-02-081-4/+3
| | | | background drawn in the sound menu with the current gtk3/light-themes (LP: #925700)
* Patch from ~covox (LP: #867649)Ken VanDine2012-01-121-0/+4
| | | | | | | | | In method ido_offscreen_proxy_realize(), a call is made to gdk_screen_get_rgba_visual() to get a GdkVisual handle, which is then passed as part of a GdkWindowAttr structure to gdk_window_new(). What's not taken into account is that gdk_screen_get_rgba_visual() will return NULL if RGBA isn't supported by the destination window manager (e.g. if someone turned the Composite extension off). In this case, as the field is always marked as valid for use (GDK_WA_VISUAL), gdk_window_new will fall over. Attached is a patch to fall back on gdk_screen_get_system_visual() if RGBA isn't available. With this, unity-panel-service no longer crashes after interacting with the Sound indicator if the Composite extension is switched off.
* Ok I take it back we don't care about border. use custom css to set ↵Robert Carr2011-09-061-8/+26
| | | | border-width and radius
* Don't leak style context...Robert Carr2011-09-061-0/+2
|
* Use GtkBorder in drawing backgroundRobert Carr2011-09-061-4/+8
|
* Use gtk_render_backgroundRobert Carr2011-09-061-25/+16
|
* Whoops copyright headersRobert Carr2011-09-021-1/+25
|
* Implement an IdoOffscreenProxy object to work around GtkRange/Scale needing ↵Robert Carr2011-09-021-0/+473
grabs, change IdoScaleMenuItem to make use of this. Fixes lp: #804009