0001-skins-Properly-propagate-draws.patch
| src/skins/ui_skinned_window.c | ||
|---|---|---|
| 35 | 35 | |
| 36 | 36 |
if (data->draw) |
| 37 | 37 |
data->draw (wid, cr); |
| 38 | ||
| 39 |
if (data->is_shaded) |
|
| 40 |
gtk_container_propagate_draw ((GtkContainer *) wid, data->shaded, cr); |
|
| 41 |
else |
|
| 42 |
gtk_container_propagate_draw ((GtkContainer *) wid, data->normal, cr); |
|
| 38 | 43 |
DRAW_FUNC_END |
| 39 | 44 | |
| 40 | 45 |
static gboolean window_button_press (GtkWidget * window, GdkEventButton * event) |
| 41 |
- |
|
