all repos — openbox @ 07f60c3a38d562f333df9d41453b2fa872f95410

openbox fork - make it a bit more like ryudo

fix moved comment
Dana Jansens danakj@orodu.net
commit

07f60c3a38d562f333df9d41453b2fa872f95410

parent

15d615853671b0988b9a87720cac2762c702f28b

2 files changed, 4 insertions(+), 4 deletions(-)

jump to
M openbox/client.copenbox/client.c

@@ -1812,10 +1812,7 @@ void client_reconfigure(ObClient *self, gboolean force)

{ gint x, y, w, h, lw, lh; - /* make sure the client's sizes are within its bounds, but only - reconfigure the window if it needs to. emacs will update its - normal hints every time it receives a conigurenotify */ - RECT_TO_DIMS(self->area, x, y, w, h); + RECT_TO_DIMS(self->area, x, y, w, h); if (!force) client_try_configure(self, &x, &y, &w, &h, &lw, &lh, FALSE); if (force || !RECT_EQUAL_DIMS(self->area, x, y, w, h)) {
M openbox/event.copenbox/event.c

@@ -1486,6 +1486,9 @@ client_update_normal_hints(client);

/* normal hints can make a window non-resizable */ client_setup_decor_and_functions(client, FALSE); + /* make sure the client's sizes are within its bounds, but only + reconfigure the window if it needs to. emacs will update its + normal hints every time it receives a conigurenotify */ client_reconfigure(client, FALSE); } else if (msgtype == XA_WM_HINTS) { client_update_wmhints(client);