bugfix: resize_hint is a bool, not a float
This commit is contained in:
parent
d4f1b99c93
commit
46cde2d95c
2
config.c
2
config.c
|
@ -400,7 +400,7 @@ parse_config(Display * disp, int scr, DC * drawcontext, const char *confpatharg,
|
||||||
awesomeconf->mwfact = f ? f : 0.6;
|
awesomeconf->mwfact = f ? f : 0.6;
|
||||||
|
|
||||||
/* resize_hints */
|
/* resize_hints */
|
||||||
awesomeconf->resize_hints = config_lookup_float(&awesomelibconf, "awesome.resize_hints");
|
awesomeconf->resize_hints = config_lookup_bool(&awesomelibconf, "awesome.resize_hints");
|
||||||
|
|
||||||
/* colors */
|
/* colors */
|
||||||
tmp = config_lookup_string(&awesomelibconf, "awesome.normal_border_color");
|
tmp = config_lookup_string(&awesomelibconf, "awesome.normal_border_color");
|
||||||
|
|
Loading…
Reference in New Issue