Skip to content

Commit

Permalink
Change tab close and rename icons to better fit the UI (microsoft#8424)
Browse files Browse the repository at this point in the history
Closes microsoft#8419

Co-authored-by: KiminoriKaburagi <heipo_nogu@outlook.jp>
  • Loading branch information
2 people authored and mpela81 committed Jan 28, 2021
1 parent 7a37ded commit 3720adf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cascadia/TerminalApp/TerminalTab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ namespace winrt::TerminalApp::implementation
Controls::MenuFlyoutItem closeTabMenuItem;
Controls::FontIcon closeSymbol;
closeSymbol.FontFamily(Media::FontFamily{ L"Segoe MDL2 Assets" });
closeSymbol.Glyph(L"\xE8BB");
closeSymbol.Glyph(L"\xE711");

closeTabMenuItem.Click([weakThis](auto&&, auto&&) {
if (auto tab{ weakThis.get() })
Expand Down Expand Up @@ -561,7 +561,7 @@ namespace winrt::TerminalApp::implementation
// "Rename Tab"
Controls::FontIcon renameTabSymbol;
renameTabSymbol.FontFamily(Media::FontFamily{ L"Segoe MDL2 Assets" });
renameTabSymbol.Glyph(L"\xE932"); // Label
renameTabSymbol.Glyph(L"\xE8AC"); // Rename

renameTabMenuItem.Click([weakThis](auto&&, auto&&) {
if (auto tab{ weakThis.get() })
Expand Down

0 comments on commit 3720adf

Please sign in to comment.