-
Notifications
You must be signed in to change notification settings - Fork 15
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
Add front-end support for roster additions #86
Conversation
src/qml/AddContactPage.qml
Outdated
import QtQuick.Layouts 1.2 | ||
import org.kde.kirigami 1.0 as Kirigami | ||
|
||
Kirigami.Page { |
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.
Don't use a new page! It's just a popup.
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 don't want to use the popup anymore, it produces problems with the drawer, is not the best on mobile and has to be centered in the middle of the window. The page looks not so great on desktop yet...
src/qml/RosterPage.qml
Outdated
Kirigami.Action { | ||
iconName: "bookmark-remove" | ||
onTriggered: { | ||
kaidan.rosterController.removeContact(model.jid) |
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.
;
is missing
... no labels 👎 |
0e7189b
to
b91e7f9
Compare
It's working already ... although I'm not satisfied with the desgin. Some things can't be fixed because the same bug as on the loginPage appeared. I would like to rework this soon on a kirigami 2 base.