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

Unified Diff: chrome/browser/ui/views/create_application_shortcut_view.cc

Issue 1673403002: Views - fix up layout of a couple dialogs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: msw review Created 4 years, 10 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 | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/views/uninstall_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/create_application_shortcut_view.cc
diff --git a/chrome/browser/ui/views/create_application_shortcut_view.cc b/chrome/browser/ui/views/create_application_shortcut_view.cc
index ea708e32c4550fb0f4b4f344a4808fe0c4828f8a..f7264b65a3463d21869daafb7ad7fba6bf042d18 100644
--- a/chrome/browser/ui/views/create_application_shortcut_view.cc
+++ b/chrome/browser/ui/views/create_application_shortcut_view.cc
@@ -260,6 +260,7 @@ void CreateApplicationShortcutView::InitControls(DialogLayout dialog_layout) {
create_shortcuts_label_ = new views::Label(
l10n_util::GetStringUTF16(IDS_CREATE_SHORTCUTS_LABEL));
create_shortcuts_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
+ create_shortcuts_label_->SetMultiLine(true);
desktop_check_box_ = AddCheckbox(
l10n_util::GetStringUTF16(IDS_CREATE_SHORTCUTS_DESKTOP_CHKBOX),
@@ -303,7 +304,7 @@ void CreateApplicationShortcutView::InitControls(DialogLayout dialog_layout) {
static const int kTableColumnSetId = 1;
column_set = layout->AddColumnSet(kTableColumnSetId);
- column_set->AddPaddingColumn(0, views::kPanelHorizIndentation);
+ column_set->AddPaddingColumn(0, views::kCheckboxIndent);
column_set->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL,
100.0f, views::GridLayout::USE_PREF, 0, 0);
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/views/uninstall_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698