-
Notifications
You must be signed in to change notification settings - Fork 816
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
Bugfix/qml warnings #3388
Bugfix/qml warnings #3388
Conversation
src/gui/tray/UserLine.qml
Outdated
width: 128 | ||
text: name | ||
elide: Text.ElideRight | ||
color: "black" | ||
font.pixelSize: Style.topLinePixelSize | ||
font.bold: true | ||
} | ||
Row { | ||
RowLayout { |
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.
do we really need a RowLayout inside another one ?
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.
I tried to go back to Row but I found it harder to keep Linux and Windows the same when comes to aligning the emoji with the message.
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.
my question was more about getting rid of the parent element and just using the parent RowLayout item
maybe it is just too hard to fix alignment issues in that case but I am wondering if that is possible (and that would reduce complexity)
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.
Please check my last commit. let me know if that is better or worst...
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.
they are looking fine for me
2508dd4
to
0c23fd3
Compare
0c23fd3
to
c9ecdc0
Compare
c9ecdc0
to
d7336d2
Compare
/rebase |
d7336d2
to
6bb2ac9
Compare
/rebase |
Signed-off-by: Camila <hello@camila.codes>
…out. Signed-off-by: Camila <hello@camila.codes>
…de Row. Signed-off-by: Camila <hello@camila.codes>
… in theme.h. Signed-off-by: Camila <hello@camila.codes>
Signed-off-by: Camila <hello@camila.codes>
Signed-off-by: Camila <hello@camila.codes>
6bb2ac9
to
7ddc4ca
Compare
AppImage file: Nextcloud-PR-3388-7ddc4ca170e3b5b363ba60b16a31e4c49981d2a1-x86_64.AppImage |
Partially fix #3070.
Most of these warnings were related to the User Status feature.
There are more PR's coming to fix some of these warning in other parts of the QML code.