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

Unified Diff: ui/views/views_delegate.cc

Issue 2750063002: views: implement dialog width snapping (Closed)
Patch Set: Created 3 years, 9 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: ui/views/views_delegate.cc
diff --git a/ui/views/views_delegate.cc b/ui/views/views_delegate.cc
index a14cf4882998ba300f4f8e1d42605e57716af110..106c158da5228351ef3a5d2fd5f1da276a420847 100644
--- a/ui/views/views_delegate.cc
+++ b/ui/views/views_delegate.cc
@@ -155,6 +155,8 @@ int ViewsDelegate::GetDistanceMetric(DistanceMetric metric) const {
return kDialogMinimumButtonWidth;
case DistanceMetric::BUTTON_HORIZONTAL_PADDING:
return kButtonHorizontalPadding;
+ case DistanceMetric::DIALOG_WIDTH_SNAPPING_UNIT:
+ return 1;
}
NOTREACHED();
return 0;

Powered by Google App Engine
This is Rietveld 408576698