-
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
Tab close icon is too big #8419
Comments
I guess it does feel a bit bigger, even if it is the same size. /cc @cinnamon-msft who might have some opinions on the matter |
I think that icon is designed for a fontsize of 10 or 12 rather than 16 |
I think the size discrepancy may be because that close icon is not typically used in this context, since it's a "chrome" icon. The cancel icon might be a better choice (\xE711), although that's possibly not semantically correct. And on a similar note, I would have expected the "Rename Tab" menu item to be using the standard rename icon (\xE8AC). Was there a reason for choosing the current icon? It also looks a little out of place to me. |
Also, as a point of comparison, have a look at the icon used on the Exit menu in this example from the Windows UI docs. https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml/images/keyboard-accelerators.png That's more in line with what I would have expected for our Close Tab menu. |
oh my god there's a rename icon Yea it should be that one 🤦♂️
Yea that does look like what we should be using. @Hegunumo wanna try that icon instead? |
Yeah I agree, that close icon is definitely too large. I am curious how the cancel icon will look, and I agree that the rename icon should be used. |
Here's what it looks like with the rename icon updated, as well as the cancel icon for the close menu. And while we're discussing this code, it's also worth mentioning that many of these standard icons can be set using a Controls::SymbolIcon renameTabSymbol;
renameTabSymbol.Symbol(Controls::Symbol::Rename); instead of Controls::FontIcon renameTabSymbol;
renameTabSymbol.FontFamily(Media::FontFamily{ L"Segoe MDL2 Assets" });
renameTabSymbol.Glyph(L"\xE932"); // Label |
Closes #8419 Co-authored-by: KiminoriKaburagi <[email protected]>
Closes #8419 Co-authored-by: KiminoriKaburagi <[email protected]> (cherry picked from commit 6952f1a)
🎉This issue was addressed in #8424, which has now been successfully released as Handy links: |
🎉This issue was addressed in #8424, which has now been successfully released as Handy links: |
Closes microsoft#8419 Co-authored-by: KiminoriKaburagi <[email protected]>
@gabrielconl good catch - surprised this was only fixed for Terminal tabs and not the TabBase |
Environment
Steps to reproduce
Right-click on an open tab, notice the close option
Expected behavior
The tab close icon should be the same size as the other icons
Actual behavior
The tab close icon is too large and distracting almost.
The text was updated successfully, but these errors were encountered: