Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(880)

Unified Diff: views/controls/scroll_view.cc

Issue 347010: Fixed view example. It was failing because some of view classes requires WidgetGTK in (Closed)
Patch Set: revert unintentional change Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | views/examples/button_example.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/scroll_view.cc
diff --git a/views/controls/scroll_view.cc b/views/controls/scroll_view.cc
index a5b5f6a67cc3a72008278b5bf1e0a0848579e6e5..84ce6c7ac32f9b4b2924e991e153da0cec76d502 100644
--- a/views/controls/scroll_view.cc
+++ b/views/controls/scroll_view.cc
@@ -190,7 +190,8 @@ void ScrollView::Layout() {
// Non-default.
if (horiz_sb_required) {
- viewport_bounds.set_height(viewport_bounds.height() - horiz_sb_height);
+ viewport_bounds.set_height(
+ std::max(0, viewport_bounds.height() - horiz_sb_height));
should_layout_contents = true;
}
// Default.
« no previous file with comments | « no previous file | views/examples/button_example.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698