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

Unified Diff: chrome/browser/resources/settings/printing_page/cups_add_printer_dialog.html

Issue 2860883004: [CUPS] Fix the issue the default queue value not being persisted with each new printer setup. (Closed)
Patch Set: Address michaelpg@'s comment. Created 3 years, 7 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 | chrome/browser/resources/settings/printing_page/cups_add_printer_dialog.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/printing_page/cups_add_printer_dialog.html
diff --git a/chrome/browser/resources/settings/printing_page/cups_add_printer_dialog.html b/chrome/browser/resources/settings/printing_page/cups_add_printer_dialog.html
index e802ed11e33af23778f34316fa8055cfb697e976..867ac2c9afabe2f0c7f0263862122e8af716bdc9 100644
--- a/chrome/browser/resources/settings/printing_page/cups_add_printer_dialog.html
+++ b/chrome/browser/resources/settings/printing_page/cups_add_printer_dialog.html
@@ -149,7 +149,7 @@
<div class="start">
<div class="label">$i18n{printerName}</div>
<div class="secondary">
- <paper-input no-label-float id="printerNameInput"
+ <paper-input no-label-float id="printerNameInput" autofocus
value="{{newPrinter.printerName}}">
</paper-input>
</div>
@@ -191,7 +191,8 @@
<div class="start">
<div class="label">$i18n{printerQueue}</div>
<div class="secondary">
- <paper-input no-label-float value="{{newPrinter.printerQueue}}">
+ <paper-input no-label-float label="ipp/print"
+ value="{{newPrinter.printerQueue}}">
</paper-input>
</div>
</div>
« no previous file with comments | « no previous file | chrome/browser/resources/settings/printing_page/cups_add_printer_dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698