-
Notifications
You must be signed in to change notification settings - Fork 801
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
Fix broken tray GUI on Linux #6798
Conversation
/backport to stable-3.13 |
@@ -640,7 +640,7 @@ ApplicationWindow { | |||
id: trayWindowTalkButton | |||
|
|||
visible: UserModel.currentUser && UserModel.currentUser.serverHasTalk | |||
icon.source: "qrc:///client/theme/white/talk-app.svg" | |||
icon.source: "image://svgimage-custom-color/talk-app.svg" + "/" + Style.currentUserHeaderTextColor |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why image instead of qrc?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are using the svg image provider in order to be able to recolor the button icons however we want directly
… image provider Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
…ernal properties Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
…ult size Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
e99fab0
to
d61a209
Compare
AppImage file: nextcloud-PR-6798-d61a209e532c106712c1853f0c94e43482d3d750-x86_64.AppImage |
Quality Gate failedFailed conditions See analysis details on SonarCloud Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
A significant amount of our tray components are borked on Plasma. Not reproducible with AppImage, but can be reproduced when running the client non-containerised on Plasma. This PR fixes them
After fix:
Before fix:
Fixes #6729