diff options
| author | Dana Jansens <danakj@orodu.net> | 2008-01-12 13:31:46 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2008-01-12 13:31:46 -0500 |
| commit | 32c3a97f2e6d029cfb183deb03ebd6963166ead1 (patch) | |
| tree | d44e4d274bb7ed1c97f0cae78946ba140b101e0d | |
| parent | 669c7655be8fef885e2f5ea0b0d389046ebb6753 (diff) | |
fix a copy/paste bug in placing the move&resize popup
| -rw-r--r-- | openbox/moveresize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/moveresize.c b/openbox/moveresize.c index 8dc122c7..675cbe9c 100644 --- a/openbox/moveresize.c +++ b/openbox/moveresize.c @@ -126,7 +126,7 @@ static void popup_coords(ObClient *c, const gchar *format, gint a, gint b) y = config_resize_popup_fixed.y.pos; if (config_resize_popup_fixed.y.center) - y = area->y + area->width/2; + y = area->y + area->height/2; else if (config_resize_popup_fixed.y.opposite) y = RECT_RIGHT(*area) - y; else |
