From: Dana Jansens Date: Tue, 12 Jun 2007 19:07:02 +0000 (+0000) Subject: ratios are floats X-Git-Tag: release-3.4.3~36^2~221 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=9b5cf4bacf95e93f9f10c7ddc89da03e4908af7c;p=dana%2Fopenbox.git ratios are floats --- diff --git a/openbox/client.c b/openbox/client.c index c6945d23..89b7024c 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2734,7 +2734,8 @@ void client_try_configure(ObClient *self, gint *x, gint *y, gint *w, gint *h, /* work within the prefered sizes given by the window */ if (!(*w == self->area.width && *h == self->area.height)) { gint basew, baseh, minw, minh; - gint incw, inch, minratio, maxratio; + gint incw, inch; + gfloat minratio, maxratio; incw = self->fullscreen || self->max_horz ? 1 : self->size_inc.width; inch = self->fullscreen || self->max_vert ? 1 : self->size_inc.height;