Implement UX for when a group has been dissolved
1 unresolved thread
1 unresolved thread
This MR is based on !367 (merged).
Closes #672 (closed)
Merge request reports
Activity
Filter activity
- Resolved by Torsten Grote
Milestone changed to %Milestone E
Added 32 commits:
-
d87a9d75...40557512 - 31 commits from branch
671-implement-ux-for-leaving-a-group
- aa61dcad - Implement UX for when a group has been dissolved
-
d87a9d75...40557512 - 31 commits from branch
- Resolved by akwizgran
Added 8 commits:
-
aa61dcad...8dac2d1c - 6 commits from branch
671-implement-ux-for-leaving-a-group
- 67866dbe - Implement UX for when a group has been dissolved
- 1147b8ff - Disable group before loading messages
-
aa61dcad...8dac2d1c - 6 commits from branch
143 161 return R.string.groups_message_received; 144 162 } 145 163 164 @Override 165 public void onReplyClick(GroupMessageItem item) { 166 if (!isDissolved) super.onReplyClick(item); 167 } 168 169 private void setGroupEnabled(boolean enabled) { 170 isDissolved = !enabled; 171 if (writeMenuItem != null) writeMenuItem.setVisible(enabled); 172 textInput.setSendButtonEnabled(enabled); 173 list.getRecyclerView().setAlpha(enabled ? 1f : 0.5f); Per @ernir's comment the other day, at some point we should factor out the alpha constants so we can use a consistent disabled style across the app. Not a blocker for this MR though.
mentioned in commit 0b11aea7
Please register or sign in to reply