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

Unified Diff: client/touch/Scrollbar.dart

Issue 8666012: Partial fix to client breakage (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years, 1 month 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
Index: client/touch/Scrollbar.dart
===================================================================
--- client/touch/Scrollbar.dart (revision 1770)
+++ client/touch/Scrollbar.dart (working copy)
@@ -55,7 +55,8 @@
bool _displayOnHover;
bool _hovering = false;
- Scrollbar(Scroller scroller, [this._displayOnHover = true]) :
+ Scrollbar(Scroller scroller, [displayOnHover = true]) :
+ _displayOnHover = displayOnHover,
_scroller = scroller,
_frame = scroller.getFrame(),
_cachedSize = new Map<String, num>() {

Powered by Google App Engine
This is Rietveld 408576698