From c3439ad09dda85628198cf956aae7754feb113c8 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Fri, 16 Dec 2016 09:03:07 +0100 Subject: [PATCH] - cc_frm_scrollbar: set default height to 0 --- src/gui/components/cc_frm_scrollbar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/components/cc_frm_scrollbar.h b/src/gui/components/cc_frm_scrollbar.h index 8ea476fb7..8057147ec 100644 --- a/src/gui/components/cc_frm_scrollbar.h +++ b/src/gui/components/cc_frm_scrollbar.h @@ -78,7 +78,7 @@ class CComponentsScrollBar : public CComponentsFrmChain CComponentsScrollBar( const int &x_pos, const int &y_pos, const int &w = 15, - const int &h = 40, + const int &h = 0, const int& count = 1, CComponentsForm *parent = NULL, int shadow_mode = CC_SHADOW_OFF,