Skip to content

Commit 8e4654d

Browse files
committed
Code Quality: Fixed icons for pane actions
1 parent e995b95 commit 8e4654d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Files.App/Actions/Navigation/AddHorizontalPaneAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public HotKey HotKey
1818
=> new(Keys.H, KeyModifiers.AltShift);
1919

2020
public RichGlyph Glyph
21-
=> new(themedIconStyle: "App.ThemedIcons.Panes.Horizontal");
21+
=> new(themedIconStyle: "App.ThemedIcons.Panes.Vertical");
2222

2323
public bool IsExecutable =>
2424
ContentPageContext.IsMultiPaneAvailable &&

src/Files.App/Actions/Navigation/AddVerticalPaneAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public HotKey HotKey
1818
=> new(Keys.V, KeyModifiers.AltShift);
1919

2020
public RichGlyph Glyph
21-
=> new(themedIconStyle: "App.ThemedIcons.Panes.Vertical");
21+
=> new(themedIconStyle: "App.ThemedIcons.Panes.Horizontal");
2222

2323
public bool IsExecutable =>
2424
ContentPageContext.IsMultiPaneAvailable &&

src/Files.App/Actions/Navigation/ArrangePanesHorizontallyAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public string Description
1515
=> "ArrangePanesHorizontallyDescription".GetLocalizedResource();
1616

1717
public RichGlyph Glyph
18-
=> new(themedIconStyle: "App.ThemedIcons.Panes.Horizontal");
18+
=> new(themedIconStyle: "App.ThemedIcons.Panes.Vertical");
1919

2020
public bool IsOn
2121
=> MultiPanesContext.ShellPaneArrangement is ShellPaneArrangement.Horizontal;

src/Files.App/Actions/Navigation/ArrangePanesVerticallyAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public string Description
1515
=> "ArrangePanesVerticallyDescription".GetLocalizedResource();
1616

1717
public RichGlyph Glyph
18-
=> new(themedIconStyle: "App.ThemedIcons.Panes.Vertical");
18+
=> new(themedIconStyle: "App.ThemedIcons.Panes.Horizontal");
1919

2020
public bool IsOn
2121
=> MultiPanesContext.ShellPaneArrangement is ShellPaneArrangement.Vertical;

0 commit comments

Comments
 (0)