Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/e3sm_quickview/components/doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def __init__(self):
class ToolLayoutManagement(Tool):
def __init__(self):
super().__init__(
icon="mdi-collage",
icon="mdi-view-module",
title="Viewport layout",
description="Toggle viewport layout toolbar for adjusting aspect-ratio, width and grouping options.",
)
Expand All @@ -95,7 +95,7 @@ class ToolCropping(Tool):
def __init__(self):
super().__init__(
icon="mdi-web",
title="Lat/Long cropping",
title="Lat/Lon cropping",
description="Toggle cropping toolbar for adjusting spacial bounds.",
)
with self, v3.Template(v_slot_append=True):
Expand Down Expand Up @@ -255,7 +255,7 @@ def __init__(self):
v3.VSpacer(classes="mt-2")
v3.VHotkey(keys="p", variant="contained", inline=True)
with v3.VRow(classes="ma-0 pb-4"):
v3.VLabel("Toggle Lat/Long cropping toolbar")
v3.VLabel("Toggle Lat/Lon cropping toolbar")
v3.VSpacer()
v3.VHotkey(keys="l", variant="contained", inline=True)
with v3.VRow(classes="ma-0 pb-4"):
Expand Down
6 changes: 3 additions & 3 deletions src/e3sm_quickview/components/toolbars.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ def __init__(self, apply_size=None):
super().__init__(**to_kwargs("adjust-layout"))

with self:
v3.VIcon("mdi-collage", classes="px-6 opacity-50")
v3.VIcon("mdi-view-module", classes="px-6 opacity-50")
v3.VLabel("Viewport layout", classes="text-subtitle-2")
v3.VSpacer()

v3.VSlider(
v_model=("aspect_ratio", 2),
prepend_icon="mdi-aspect-ratio",
prepend_icon="mdi-arrow-expand-horizontal",
min=1,
max=2,
step=0.1,
Expand Down Expand Up @@ -81,7 +81,7 @@ def __init__(self, apply_size=None):
with v3.VBtn(
"Size",
classes="text-none mx-4",
prepend_icon="mdi-view-module",
prepend_icon="mdi-view-column",
append_icon="mdi-menu-down",
):
with v3.VMenu(activator="parent"):
Expand Down
4 changes: 2 additions & 2 deletions src/e3sm_quickview/components/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def __init__(self):
super().__init__(
compact="compact_drawer",
title="Viewport layout",
icon="mdi-collage",
icon="mdi-view-module",
value="adjust-layout",
keybinding="p",
)
Expand Down Expand Up @@ -160,7 +160,7 @@ class Cropping(ToggleButton):
def __init__(self):
super().__init__(
compact="compact_drawer",
title="Lat/Long cropping",
title="Lat/Lon cropping",
icon="mdi-web",
value="adjust-databounds",
keybinding="l",
Expand Down
Loading