Skip to content

Commit 936b868

Browse files
committed
Use new switch to tab / close tab icons
1 parent 058f89f commit 936b868

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

ContextMenu.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ internal static List<Result> GetBrowserTabContextMenu(BrowserTab tab)
1212
new Result
1313
{
1414
Title = "Switch to tab",
15-
IcoPath = Main.IconPath,
15+
IcoPath = Main.SwitchTabPath,
1616
Action = c =>
1717
{
1818
tab.ActivateTab();
@@ -22,7 +22,7 @@ internal static List<Result> GetBrowserTabContextMenu(BrowserTab tab)
2222
new Result
2323
{
2424
Title = "Close tab",
25-
IcoPath = Main.IconPath,
25+
IcoPath = Main.CloseTabPath,
2626
Action = c =>
2727
{
2828
tab.CloseTab();

Images/close_tab.png

3.83 KB
Loading

Images/switch_tab.png

2.41 KB
Loading

0 commit comments

Comments
 (0)