diff options
author | portix <portix@gmx.net> | 2014-03-24 13:47:22 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2014-03-24 13:47:22 +0100 |
commit | 2abd6311e28ca90091b8f029f954ddaa0bf91998 (patch) | |
tree | 704def4acb34f999db1a7215d843194af9c4047e | |
parent | 947a202ea1b2926082751bdbb5298830cb40057c (diff) | |
download | dwb-2abd6311e28ca90091b8f029f954ddaa0bf91998.zip |
Removing debug message
-rw-r--r-- | src/scripts.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/scripts.c b/src/scripts.c index 17d65d62..faa53a0c 100644 --- a/src/scripts.c +++ b/src/scripts.c @@ -5883,7 +5883,6 @@ gui_get_tabbar_height(JSContextRef ctx, JSObjectRef object, JSStringRef property } static bool gui_set_tabbar_height(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) { - puts("bar"); double bar_height = JSValueToNumber(ctx, value, exception); if (!isnan(bar_height)) { dwb.misc.bar_height = (int) bar_height; |