Paul Posted September 16, 2014 Posted September 16, 2014 Hi, I found a bug in WidgetScrollBox related to hiding the scrollbars.According to the manual: 0 to always render a vertical scroll bar. But judging from the C++ code (WidgetScrollBox.cpp l:358), vhidden = 0 will never be respected if(vscroll_enabled) { if(vscroll_hidden == 1) { if ... else if(vscroll_hidden == 0) vscroll_show = 1; else .... } else { ... } } Since else if(vscroll_hidden == 0) is inside if(vscroll_hidden == 1) it will never pass.Regards,Paul
silent Posted September 17, 2014 Posted September 17, 2014 Hi Paul, Thank you! I've added this issue to our internal bug tracker. How to submit a good bug report --- FTP server for test scenes and user uploads: ftp://files.unigine.com user: upload password: 6xYkd6vLYWjpW6SN
Recommended Posts