Search Issue Tracker
Won't Fix
Votes
0
Found in [Package]
3.5
Issue ID
HUBX-932
Regression
No
Unity Hub Appearance settings have a "Menu bar" field on Windows
How to reproduce:
1. Open the Unity Hub
2. Click Preferences → Appearance
3. Observe the second field title
Expected result: The title is “System tray”
Actual result: The title is “Menu bar”
Reproducible with: 3.5.0
Reproducible on: Windows 11 Pro
Comments (1)
-
LooperVFX
Jul 24, 2024 21:50
Interesting, as it seems like pretty low hanging fruit to change a string based on current platform for an electron / javascript app.
Here’s a simple javascript object lookup example that changes the string to the appropriate term based on the value of process.platform:
const platformTitles = {
darwin: 'Menu bar', //macos
win32: 'System tray', //windows
linux: 'Notification Area' //ubuntu
};const fieldTitle = platformTitles[process.platform] || 'Notification Area';
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- UI Builder can't set a background image to a sprite from a multi-sprite spritesheet in the Resources folder
- Light2D freeform does not render the internal part when rendered in certain shapes
- Using AddCopyPass causes an incorrect merging of passes.
- Negative Enum value is not pasted correctly when copying from another array
- Silent Crash when generating Lightmap UVs for a model with a large object scale
Resolution Note:
There are no fixes planned for this bug