From: Dana Jansens Date: Sun, 10 Jun 2007 21:55:09 +0000 (+0000) Subject: don't limit the highlight at all X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=6b05306a286ac5ebf0988d63f080e829199fd1da;p=chaz%2Fopenbox don't limit the highlight at all --- diff --git a/render/theme.c b/render/theme.c index a4b34f70..3f90a145 100644 --- a/render/theme.c +++ b/render/theme.c @@ -1793,7 +1793,7 @@ static gboolean read_appearance(XrmDatabase db, const RrInstance *inst, if (!read_color(db, inst, icname, &value->surface.interlace_color)) value->surface.interlace_color = RrColorNew(inst, 0, 0, 0); - if (read_int(db, hname, &i) && i >= 0 && i <= 255) + if (read_int(db, hname, &i) && i >= 0) value->surface.bevel_light_adjust = i; if (read_int(db, sname, &i) && i >= 0 && i <= 255) value->surface.bevel_dark_adjust = i;