From: Mikael Magnusson Date: Sun, 11 Aug 2013 00:07:32 +0000 (+0200) Subject: Fix a typo that prevented setting client size for the height only (???) X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fopenbox;a=commitdiff_plain;h=ef868caf4c68bd999cc2f117bd61965f3e4650a9 Fix a typo that prevented setting client size for the height only (???) --- diff --git a/openbox/actions/moveresizeto.c b/openbox/actions/moveresizeto.c index 4b3f2699..56f21e61 100644 --- a/openbox/actions/moveresizeto.c +++ b/openbox/actions/moveresizeto.c @@ -136,7 +136,7 @@ static gboolean run_func(ObActionsData *data, gpointer options) h = o->h; if (h == G_MININT) { - if (o->w_sets_client_size) + if (o->h_sets_client_size) h = c->area.height; else h = c->frame->area.height;