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

Side by Side Diff: ui/file_manager/file_manager/main.html

Issue 2077293002: Remove ellipsis from "Set wallpaper..." context menu item. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nit Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 -- Use of this source code is governed by a BSD-style license that can be 4 -- Use of this source code is governed by a BSD-style license that can be
5 -- found in the LICENSE file. 5 -- found in the LICENSE file.
6 --> 6 -->
7 <html i18n-values="dir:textdirection;lang:language"> 7 <html i18n-values="dir:textdirection;lang:language">
8 <head> 8 <head>
9 <!-- We have to set some default title, or chrome will use the page name. 9 <!-- We have to set some default title, or chrome will use the page name.
10 -- As soon as we init and change to a directory, we'll show the directory 10 -- As soon as we init and change to a directory, we'll show the directory
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 <command id="toggle-pinned" i18n-values="label:OFFLINE_COLUMN_LABEL"> 88 <command id="toggle-pinned" i18n-values="label:OFFLINE_COLUMN_LABEL">
89 <command id="toggle-hidden-files" 89 <command id="toggle-hidden-files"
90 i18n-values="label:TOGGLE_HIDDEN_FILES_COMMAND_LABEL" 90 i18n-values="label:TOGGLE_HIDDEN_FILES_COMMAND_LABEL"
91 shortcut="U+00BE-Ctrl" hide-shortcut-text> 91 shortcut="U+00BE-Ctrl" hide-shortcut-text>
92 92
93 <command id="default-task"> 93 <command id="default-task">
94 <command id="open-with" i18n-values="label:MORE_ACTIONS_BUTTON_LABEL"> 94 <command id="open-with" i18n-values="label:MORE_ACTIONS_BUTTON_LABEL">
95 <command id="zip-selection" 95 <command id="zip-selection"
96 i18n-values="label:ZIP_SELECTION_BUTTON_LABEL"> 96 i18n-values="label:ZIP_SELECTION_BUTTON_LABEL">
97 <command id="set-wallpaper" 97 <command id="set-wallpaper"
98 i18n-values="label:SET_WALLPAPER_BUTTON_LABEL"> 98 i18n-values="label:SET_WALLPAPER_MENU_ITEM_LABEL">
99 99
100 <command id="share" i18n-values="label:SHARE_BUTTON_LABEL" disabled hidden 100 <command id="share" i18n-values="label:SHARE_BUTTON_LABEL" disabled hidden
101 shortcut="U+00BE" hide-shortcut-text><!-- Shortcut: '.' --> 101 shortcut="U+00BE" hide-shortcut-text><!-- Shortcut: '.' -->
102 102
103 <command id="zoom-in" shortcut="U+00BB-Ctrl"> 103 <command id="zoom-in" shortcut="U+00BB-Ctrl">
104 <command id="zoom-out" shortcut="U+00BD-Ctrl"> 104 <command id="zoom-out" shortcut="U+00BD-Ctrl">
105 <command id="zoom-reset" shortcut="U+0030-Ctrl"> 105 <command id="zoom-reset" shortcut="U+0030-Ctrl">
106 106
107 <command id="sort-by-name" i18n-values="label:NAME_COLUMN_LABEL"> 107 <command id="sort-by-name" i18n-values="label:NAME_COLUMN_LABEL">
108 <command id="sort-by-size" i18n-values="label:SIZE_COLUMN_LABEL"> 108 <command id="sort-by-size" i18n-values="label:SIZE_COLUMN_LABEL">
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 <span i18n-content="CANCEL_LABEL"></span> 488 <span i18n-content="CANCEL_LABEL"></span>
489 </button> 489 </button>
490 </div> 490 </div>
491 </div> 491 </div>
492 <div id="drag-container"></div> 492 <div id="drag-container"></div>
493 <files-tooltip></files-tooltip> 493 <files-tooltip></files-tooltip>
494 <files-quick-view id="quick-view"></files-quick-view> 494 <files-quick-view id="quick-view"></files-quick-view>
495 <iframe id="command-dispatcher" hidden aria-hidden="true"></iframe> 495 <iframe id="command-dispatcher" hidden aria-hidden="true"></iframe>
496 </body> 496 </body>
497 </html> 497 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698