Skip to content

Commit 1f38275

Browse files
ktranDevtools-frontend LUCI CQ
authored and
Devtools-frontend LUCI CQ
committed
[icon] Update LinearMemoryNavigator redo/undo icons
Before: https://imgur.com/QY1pa9t.png After: https://imgur.com/4OJ86nF.png Bug: 1427397 Change-Id: Ic133e68e902c367022c9c17a43689681819bdcd4 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/4445935 Reviewed-by: Kateryna Prokopenko <[email protected]> Auto-Submit: Kim-Anh Tran <[email protected]> Commit-Queue: Kateryna Prokopenko <[email protected]>
1 parent 8d14fa9 commit 1f38275

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

config/gni/devtools_grd_files.gni

+1
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ grd_files_release_sources = [
185185
"front_end/Images/profile.svg",
186186
"front_end/Images/record-start.svg",
187187
"front_end/Images/record-stop.svg",
188+
"front_end/Images/redo.svg",
188189
"front_end/Images/refresh.svg",
189190
"front_end/Images/refresh_12x12_icon.svg",
190191
"front_end/Images/resizeDiagonal.svg",

config/gni/devtools_image_files.gni

+1
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ devtools_svg_sources = [
186186
"profile.svg",
187187
"record-start.svg",
188188
"record-stop.svg",
189+
"redo.svg",
189190
"refresh.svg",
190191
"refresh_12x12_icon.svg",
191192
"resizeDiagonal.svg",

front_end/Images/src/redo.svg

+3
Loading

front_end/ui/components/linear_memory_inspector/LinearMemoryNavigator.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ export class LinearMemoryNavigator extends HTMLElement {
133133
const result = html`
134134
<div class="navigator">
135135
<div class="navigator-item">
136-
${this.#createButton({icon: 'ic_undo_16x16_icon', title: i18nString(UIStrings.goBackInAddressHistory),
136+
${this.#createButton({icon: 'undo', title: i18nString(UIStrings.goBackInAddressHistory),
137137
event: new HistoryNavigationEvent(Navigation.Backward), enabled: this.#canGoBackInHistory})}
138-
${this.#createButton({icon: 'ic_redo_16x16_icon', title: i18nString(UIStrings.goForwardInAddressHistory),
138+
${this.#createButton({icon: 'redo', title: i18nString(UIStrings.goForwardInAddressHistory),
139139
event: new HistoryNavigationEvent(Navigation.Forward), enabled: this.#canGoForwardInHistory})}
140140
</div>
141141
<div class="navigator-item">

0 commit comments

Comments
 (0)