Skip to content

Commit f4ca4c1

Browse files
committed
fix(crop): update icon for lat/lon cropping
1 parent d108b78 commit f4ca4c1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/e3sm_quickview/components/doc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def __init__(self):
9494
class ToolCropping(Tool):
9595
def __init__(self):
9696
super().__init__(
97-
icon="mdi-crop",
97+
icon="mdi-web",
9898
title="Lat/Long cropping",
9999
description="Toggle cropping toolbar for adjusting spacial bounds.",
100100
)

src/e3sm_quickview/components/toolbars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def __init__(self):
191191
super().__init__(**to_kwargs("adjust-databounds"))
192192

193193
with self:
194-
v3.VIcon("mdi-crop", classes="pl-6 opacity-50")
194+
v3.VIcon("mdi-web", classes="pl-6 opacity-50")
195195
with v3.VRow(classes="ma-0 px-2 align-center"):
196196
with v3.VCol(cols=6):
197197
with v3.VRow(classes="mx-2 my-0"):

src/e3sm_quickview/components/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def __init__(self):
161161
super().__init__(
162162
compact="compact_drawer",
163163
title="Lat/Long cropping",
164-
icon="mdi-crop",
164+
icon="mdi-web",
165165
value="adjust-databounds",
166166
keybinding="c",
167167
)

0 commit comments

Comments
 (0)