X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fpopup.c;h=f5072748734953f70dff767858596bab3ea6f232;hb=b1a50affe5bc968bffaac0e87ae108259beed428;hp=6002738670f9ec27608ba258d06553df0256d850;hpb=3499ea8397d21bbc6e930ea908e712c6098474ae;p=chaz%2Fopenbox diff --git a/openbox/popup.c b/openbox/popup.c index 60027386..f5072748 100644 --- a/openbox/popup.c +++ b/openbox/popup.c @@ -154,10 +154,14 @@ void popup_delay_show(ObPopup *self, gulong usec, gchar *text) gint emptyx, emptyy; /* empty space between elements */ gint textx, texty, textw, texth; gint iconx, icony, iconw, iconh; - Rect *area; + Rect *area, mon; - area = screen_physical_area(); + RECT_SET(mon, self->x, self->y, 1, 1); + area = screen_physical_area_monitor(screen_find_monitor(&mon)); + /* when there is no icon and the text is not parent relative, then + fill the whole dialog with the text appearance, don't use the bg at all + */ if (self->hasicon || self->a_text->surface.grad == RR_SURFACE_PARENTREL) RrMargins(self->a_bg, &l, &t, &r, &b); else @@ -198,7 +202,10 @@ void popup_delay_show(ObPopup *self, gulong usec, gchar *text) texty = (h - texth - emptyy) / 2 + t + ob_rr_theme->paddingy; icony = (h - iconh - emptyy) / 2 + t + ob_rr_theme->paddingy; - if (!(self->hasicon || self->a_text->surface.grad == RR_SURFACE_PARENTREL)) + /* when there is no icon, then fill the whole dialog with the text + appearance + */ + if (!self->hasicon) { textx = texty = 0; texth += emptyy; @@ -244,6 +251,9 @@ void popup_delay_show(ObPopup *self, gulong usec, gchar *text) /* set the windows/appearances up */ XMoveResizeWindow(ob_display, self->bg, x, y, w, h); + /* when there is no icon and the text is not parent relative, then + fill the whole dialog with the text appearance, don't use the bg at all + */ if (self->hasicon || self->a_text->surface.grad == RR_SURFACE_PARENTREL) RrPaint(self->a_bg, self->bg, w, h); @@ -272,6 +282,8 @@ void popup_delay_show(ObPopup *self, gulong usec, gchar *text) popup_show_timeout(self); } } + + g_free(area); } void popup_hide(ObPopup *self)