Fix a typo that prevented setting client size for the height only (???)
This commit is contained in:
parent
21349b6046
commit
ef868caf4c
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ static gboolean run_func(ObActionsData *data, gpointer options)
|
||||||
|
|
||||||
h = o->h;
|
h = o->h;
|
||||||
if (h == G_MININT) {
|
if (h == G_MININT) {
|
||||||
if (o->w_sets_client_size)
|
if (o->h_sets_client_size)
|
||||||
h = c->area.height;
|
h = c->area.height;
|
||||||
else
|
else
|
||||||
h = c->frame->area.height;
|
h = c->frame->area.height;
|
||||||
|
|
Loading…
Reference in a new issue