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

Package: Hub

-

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

  1. Resolution Note:

    There are no fixes planned for this bug

Comments (1)

  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

Log in to post comment

All about bugs

View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.