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

Unified Diff: athena/home/minimized_home.cc

Issue 411543006: Explicit container priority (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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
Index: athena/home/minimized_home.cc
diff --git a/athena/home/minimized_home.cc b/athena/home/minimized_home.cc
index 577390db40a5a9e8142eab85855b0e4180efba45..206bf6adfbde81603d1eabf9d71d6a8babdde463 100644
--- a/athena/home/minimized_home.cc
+++ b/athena/home/minimized_home.cc
@@ -40,7 +40,7 @@ class MinimizedHomeView : public views::View {
}
virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE {
- if (event.IsLeftMouseButton() && event.GetClickCount() > 1) {
+ if (event.IsLeftMouseButton() && event.GetClickCount() == 1) {
delegate_->OnDragUpCompleted();
SetColor(kDragHandleColorNormal);
return true;

Powered by Google App Engine
This is Rietveld 408576698