Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add style class "menubar" to the offscreen proxy, this fixes the white ↵ | Ken VanDine | 2012-02-08 | 1 | -4/+3 |
| | | | | background drawn in the sound menu with the current gtk3/light-themes (LP: #925700) | ||||
* | Patch from ~covox (LP: #867649) | Ken VanDine | 2012-01-12 | 1 | -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 Carr | 2011-09-06 | 1 | -8/+26 |
| | | | | border-width and radius | ||||
* | Don't leak style context... | Robert Carr | 2011-09-06 | 1 | -0/+2 |
| | |||||
* | Use GtkBorder in drawing background | Robert Carr | 2011-09-06 | 1 | -4/+8 |
| | |||||
* | Use gtk_render_background | Robert Carr | 2011-09-06 | 1 | -25/+16 |
| | |||||
* | Whoops copyright headers | Robert Carr | 2011-09-02 | 1 | -1/+25 |
| | |||||
* | Implement an IdoOffscreenProxy object to work around GtkRange/Scale needing ↵ | Robert Carr | 2011-09-02 | 1 | -0/+473 |
grabs, change IdoScaleMenuItem to make use of this. Fixes lp: #804009 |