-
Notifications
You must be signed in to change notification settings - Fork 79
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 new member after typing message and pressing enter #17014
base: master
Are you sure you want to change the base?
Conversation
Jenkins BuildsClick to see older builds (7)
|
0487ddc
to
3fb89d6
Compare
@@ -291,6 +292,12 @@ StatusSectionLayout { | |||
amISectionAdmin: root.amISectionAdmin | |||
sendViaPersonalChatEnabled: root.sendViaPersonalChatEnabled | |||
paymentRequestFeatureEnabled: root.paymentRequestFeatureEnabled | |||
selectingMembers: headerContentLoader.item && !!headerContentLoader.item.selectingMembers | |||
onGroupUpdated: { | |||
if (headerContentLoader.item && headerContentLoader.item instanceof ChatHeaderContentView) { |
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.
This seems somewhat odd... to rely on the concrete underlying type of the component; but I don't really have a better idea atm 🤷
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.
Yeah, it was either that or doing !!headerContentLoader.item.groupUpdated
. It's as you prefer
Fixes #8349 When the member selector menu is open, sending a message adds/removes the members and then sends the message. Therefore, the new member will also receive the message.
3fb89d6
to
0702919
Compare
@alexjba @micieslak friendly reminder to review |
What does the PR do
Fixes #8349
When the member selector menu is open, sending a message adds/removes the members and then sends the message. Therefore, the new member will also receive the message.
The first commit is just a cleanup of code taht is never used
Affected areas
Group chat member selection (for existing chat)
Architecture compliance
My PR is consistent with this document: Status Desktop Architecture Guide
Screenshot of functionality (including design for comparison)
add-remove-members.webm
Impact on end user
Enables the user to add or remove members more easily
How to test
Also, using the Confirm as before works as usual
Risk
Tick one:
Worst case the new feature doesn't work