-
Notifications
You must be signed in to change notification settings - Fork 908
Description
⚠️ Before submitting, please verify the following: ⚠️
- This is a bug, not a question or a configuration issue.
- This issue is not already reported on Github (I've searched it).
- Nextcloud Server and Desktop Client are up to date. See Server Maintenance and Release Schedule and Desktop Releases for supported versions.
- I agree to follow Nextcloud's Code of Conduct
Bug description
The Nextcloud Desktop Client shows white text on white background in the system tray account menu (e.g. Pause sync, Settings, Exit).
The issue persists across restarts and ignores all Qt / GTK theming overrides.
The problem is caused by persisted color values (serverColor, serverTextColor) stored in the client configuration file.
~/.config/Nextcloud/nextcloud.cfg
[Accounts]
0\serverColor=...
0\serverTextColor=...see also: nextcloud.cfg.txt
When these values are present, the tray menu is rendered with explicit palette overrides instead of using the platform theme.
Removing these keys immediately fixes the issue.
Steps to reproduce
- Use Nextcloud Desktop Client with an existing account configuration
- Open the system tray menu → My Account
- Observe white text on white background in tray menu entries
- Hover over a menu entry
→ background changes and text becomes readable - Restart client
→ issue persists
Workaround to fix:
sed -i '/serverColor/d;/serverTextColor/d' ~/.config/Nextcloud/nextcloud.cfgAfter removal, the tray menu uses correct theme colors again.
Expected behavior
- Tray menus should follow the active Qt / GTK theme
- Persisted account branding colors must not override global UI palette
- Theme changes (dark/light) should invalidate stored palette overrides
- Tray menu text should always be readable
Which files are affected by this bug
~/.config/Nextcloud/nextcloud.cfg
Operating system
Linux
Which version of the operating system you are running.
Ubuntu 22.04
Package
Official PPA
Nextcloud Server version
32.0.3 (AIO)
Nextcloud Desktop Client version
4.0.4
Is this bug present after an update or on a fresh install?
Updated to a major version (ex. 3.16.3 to 3.17.0)
Are you using the Nextcloud Server Encryption module?
Encryption is Disabled
Are you using an external user-backend?
- Default internal user-backend
- LDAP/ Active Directory
- SSO - SAML
- Other
Nextcloud Server logs
Additional info
