]> Dogcows Code - chaz/openbox/commitdiff
better positioning and some spacing
authorDana Jansens <danakj@orodu.net>
Sat, 19 May 2007 19:05:47 +0000 (19:05 +0000)
committerDana Jansens <danakj@orodu.net>
Sat, 19 May 2007 19:05:47 +0000 (19:05 +0000)
openbox/focus_cycle_popup.c

index 5e4d7a9c4ae5d99ca27f7eb18598b2dbcce478dd..0dbc95f01a4be68a1e6a58bf332d2495d44c4d6b 100644 (file)
@@ -32,6 +32,7 @@
 
 #define ICON_SIZE 48
 #define ICON_HILITE_WIDTH 2
+#define OUTSIDE_BORDER 2
 
 typedef struct _ObFocusCyclePopup       ObFocusCyclePopup;
 typedef struct _ObFocusCyclePopupTarget ObFocusCyclePopupTarget;
@@ -235,10 +236,10 @@ static void popup_render(ObFocusCyclePopup *p, const ObClient *c)
 
     /* get the outside margins */
     RrMargins(p->a_bg, &l, &t, &r, &b);
-    l += ob_rr_theme->paddingx;
-    r += ob_rr_theme->paddingx;
-    t += ob_rr_theme->paddingy;
-    b += ob_rr_theme->paddingy;
+    l += ob_rr_theme->paddingx + OUTSIDE_BORDER;
+    r += ob_rr_theme->paddingx + OUTSIDE_BORDER;
+    t += ob_rr_theme->paddingy + OUTSIDE_BORDER;
+    b += ob_rr_theme->paddingy + OUTSIDE_BORDER;
 
     /* get the icons sizes */
     iconw = ICON_SIZE - (ICON_HILITE_WIDTH + ob_rr_theme->paddingx) * 2;
@@ -262,11 +263,12 @@ static void popup_render(ObFocusCyclePopup *p, const ObClient *c)
     texth = RrMinHeight(p->a_text);
 
     /* find the height of the dialog */
-    h = t + b + (icon_rows * ICON_SIZE) + (ob_rr_theme->paddingy + texth);
+    h = t + b + (icon_rows * ICON_SIZE) +
+        (ob_rr_theme->paddingy * 2 + OUTSIDE_BORDER + texth);
 
     /* get the position of the text */
     textx = l;
-    texty = h - texth;
+    texty = h - texth - b;
 
     /* find the position for the popup (include the outer borders) */
     x = screen_area->x + (screen_area->width -
This page took 0.02441 seconds and 4 git commands to generate.