File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
src/e3sm_quickview/components Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ def __init__(self):
8383class ToolLayoutManagement (Tool ):
8484 def __init__ (self ):
8585 super ().__init__ (
86- icon = "mdi-collage " ,
86+ icon = "mdi-view-module " ,
8787 title = "Viewport layout" ,
8888 description = "Toggle viewport layout toolbar for adjusting aspect-ratio, width and grouping options." ,
8989 )
@@ -95,7 +95,7 @@ class ToolCropping(Tool):
9595 def __init__ (self ):
9696 super ().__init__ (
9797 icon = "mdi-web" ,
98- title = "Lat/Long cropping" ,
98+ title = "Lat/Lon cropping" ,
9999 description = "Toggle cropping toolbar for adjusting spacial bounds." ,
100100 )
101101 with self , v3 .Template (v_slot_append = True ):
@@ -255,7 +255,7 @@ def __init__(self):
255255 v3 .VSpacer (classes = "mt-2" )
256256 v3 .VHotkey (keys = "p" , variant = "contained" , inline = True )
257257 with v3 .VRow (classes = "ma-0 pb-4" ):
258- v3 .VLabel ("Toggle Lat/Long cropping toolbar" )
258+ v3 .VLabel ("Toggle Lat/Lon cropping toolbar" )
259259 v3 .VSpacer ()
260260 v3 .VHotkey (keys = "l" , variant = "contained" , inline = True )
261261 with v3 .VRow (classes = "ma-0 pb-4" ):
Original file line number Diff line number Diff line change @@ -42,13 +42,13 @@ def __init__(self, apply_size=None):
4242 super ().__init__ (** to_kwargs ("adjust-layout" ))
4343
4444 with self :
45- v3 .VIcon ("mdi-collage " , classes = "px-6 opacity-50" )
45+ v3 .VIcon ("mdi-view-module " , classes = "px-6 opacity-50" )
4646 v3 .VLabel ("Viewport layout" , classes = "text-subtitle-2" )
4747 v3 .VSpacer ()
4848
4949 v3 .VSlider (
5050 v_model = ("aspect_ratio" , 2 ),
51- prepend_icon = "mdi-aspect-ratio " ,
51+ prepend_icon = "mdi-arrow-expand-horizontal " ,
5252 min = 1 ,
5353 max = 2 ,
5454 step = 0.1 ,
@@ -81,7 +81,7 @@ def __init__(self, apply_size=None):
8181 with v3 .VBtn (
8282 "Size" ,
8383 classes = "text-none mx-4" ,
84- prepend_icon = "mdi-view-module " ,
84+ prepend_icon = "mdi-view-column " ,
8585 append_icon = "mdi-menu-down" ,
8686 ):
8787 with v3 .VMenu (activator = "parent" ):
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ def __init__(self):
128128 super ().__init__ (
129129 compact = "compact_drawer" ,
130130 title = "Viewport layout" ,
131- icon = "mdi-collage " ,
131+ icon = "mdi-view-module " ,
132132 value = "adjust-layout" ,
133133 keybinding = "p" ,
134134 )
@@ -160,7 +160,7 @@ class Cropping(ToggleButton):
160160 def __init__ (self ):
161161 super ().__init__ (
162162 compact = "compact_drawer" ,
163- title = "Lat/Long cropping" ,
163+ title = "Lat/Lon cropping" ,
164164 icon = "mdi-web" ,
165165 value = "adjust-databounds" ,
166166 keybinding = "l" ,
You can’t perform that action at this time.
0 commit comments