Merge pull request #14014 from kosz78/scroll-container-fix

Fix scroll enabled in case of content fit in scroll container
This commit is contained in:
Rémi Verschelde 2017-12-08 08:28:29 +01:00 committed by GitHub
commit b3b4727dff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -354,6 +354,7 @@ void ScrollContainer::update_scrollbars() {
if (!scroll_v || min.height <= size.height - hmin.height) {
v_scroll->hide();
v_scroll->set_max(0);
scroll.y = 0;
} else {
@ -366,6 +367,7 @@ void ScrollContainer::update_scrollbars() {
if (!scroll_h || min.width <= size.width - vmin.width) {
h_scroll->hide();
h_scroll->set_max(0);
scroll.x = 0;
} else {