-
Notifications
You must be signed in to change notification settings - Fork 8.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change tab close and rename icons to better fit the UI #8424
Conversation
src/cascadia/TerminalApp/Tab.cpp
Outdated
@@ -526,7 +526,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"\xEDAE"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Segoe MDL2 icons mentions "EDAE ErrorBadge12". Using an error badge to represent closing a tab seems dubious to me, even if the glyph is currently similar.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then maybe I will try make the original icon smaller > <
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Either that or use “F13D StatusCircleErrorX”
I can't change the size using |
Yes it compiles, but no matter what integer I put to parentheses size of glyph won't change at all. I can't make it either smaller or bigger. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
F13D
(StatusCircleErrorX)is a much smaller variant of the icon. It could work.
src/cascadia/TerminalApp/Tab.cpp
Outdated
@@ -526,7 +526,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"\xEDAE"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Either that or use “F13D StatusCircleErrorX”
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm ok with this. Just fix the merge conflicts and I can approve/merge it. 😊 |
@carlos-zamora you can definitely approve something that has merge conflicts -- it cannot be merged even with your approval if there are conflicts. |
thank you! |
Closes #8419 Co-authored-by: KiminoriKaburagi <[email protected]> (cherry picked from commit 6952f1a)
🎉 Handy links: |
🎉 Handy links: |
Closes microsoft#8419 Co-authored-by: KiminoriKaburagi <[email protected]>
Summary of the Pull Request
Made the tab icon smaller so that it is the same size as the other icons
References
PR Checklist
Detailed Description of the Pull Request / Additional comments
Validation Steps Performed