blob: 94fee61231ec55d93359780afbd0bde12efcd482 (
plain)
1
2
3
4
5
6
7
8
9
10
|
gdk_window_show (widget->window);
gdk_window_clear_area (widget->window,
widget->allocation.x,
widget->allocation.y,
widget->allocation.width,
widget->allocation.height);
gdk_window_hide (widget->window);
if (GTK_WIDGET_VISIBLE (widget->parent))
if (GTK_WIDGET_REALIZED (widget->parent) &&
if (GTK_WIDGET_MAPPED (widget->parent) &&
|