mirror of
https://github.com/element-hq/element-android
synced 2024-11-28 21:48:50 +03:00
Merge pull request #2294 from gjpower/fix/edit_image_icon_visibility
Make edit and remove image icons visible in attachments preview screen
This commit is contained in:
commit
616a9cee1f
2 changed files with 3 additions and 0 deletions
|
@ -9,6 +9,7 @@ Improvements 🙌:
|
|||
- New room creation screen: set topic and avatar in the room creation form (#2078)
|
||||
- Add option to send with enter (#1195)
|
||||
- Use Hardware keyboard enter to send message (use shift-enter for new line) (#1881, #1440)
|
||||
- Edit and remove icons are now visible on image attachment preview screen (#2294)
|
||||
|
||||
Bugfix 🐛:
|
||||
- Messages encrypted with no way to decrypt after SDK update from 0.18 to 1.0.0 (#2252)
|
||||
|
|
|
@ -8,12 +8,14 @@
|
|||
android:id="@+id/attachmentsPreviewRemoveAction"
|
||||
android:icon="@drawable/ic_delete"
|
||||
android:title="@string/delete"
|
||||
app:iconTint="?vctr_settings_icon_tint_color"
|
||||
app:showAsAction="always" />
|
||||
|
||||
<item
|
||||
android:id="@+id/attachmentsPreviewEditAction"
|
||||
android:icon="@drawable/ic_edit"
|
||||
android:title="@string/edit"
|
||||
app:iconTint="?vctr_settings_icon_tint_color"
|
||||
app:showAsAction="always" />
|
||||
|
||||
</menu>
|
||||
|
|
Loading…
Reference in a new issue