Change tab close and rename icons to better fit the UI#8424
Conversation
src/cascadia/TerminalApp/Tab.cpp
Outdated
| 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.
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.
Then maybe I will try make the original icon smaller > <
There was a problem hiding this comment.
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. |
eoussama
left a comment
There was a problem hiding this comment.
F13D (StatusCircleErrorX)is a much smaller variant of the icon. It could work.
src/cascadia/TerminalApp/Tab.cpp
Outdated
| 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.
Either that or use “F13D StatusCircleErrorX”
|
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! |
|
🎉 Handy links: |
|
🎉 Handy links: |
Closes microsoft#8419 Co-authored-by: KiminoriKaburagi <heipo_nogu@outlook.jp>



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