From 46cde2d95c265e1023ae31d55e9bf32cc97305a0 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 8 Oct 2007 10:26:47 +0200 Subject: [PATCH] bugfix: resize_hint is a bool, not a float --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.c b/config.c index d06234df0..f261c3b0b 100644 --- a/config.c +++ b/config.c @@ -400,7 +400,7 @@ parse_config(Display * disp, int scr, DC * drawcontext, const char *confpatharg, awesomeconf->mwfact = f ? f : 0.6; /* resize_hints */ - awesomeconf->resize_hints = config_lookup_float(&awesomelibconf, "awesome.resize_hints"); + awesomeconf->resize_hints = config_lookup_bool(&awesomelibconf, "awesome.resize_hints"); /* colors */ tmp = config_lookup_string(&awesomelibconf, "awesome.normal_border_color");