From ab708f8855ef42ae7fc1b63726e13db42848ad4b Mon Sep 17 00:00:00 2001 From: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com> Date: Wed, 19 Jul 2023 20:49:25 +0400 Subject: [PATCH] android: move chat item menu info action above stop file action (#2725) --- .../main/java/chat/simplex/app/views/chat/item/ChatItemView.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/multiplatform/android/src/main/java/chat/simplex/app/views/chat/item/ChatItemView.kt b/apps/multiplatform/android/src/main/java/chat/simplex/app/views/chat/item/ChatItemView.kt index d67921d3dd..35b62fcf1b 100644 --- a/apps/multiplatform/android/src/main/java/chat/simplex/app/views/chat/item/ChatItemView.kt +++ b/apps/multiplatform/android/src/main/java/chat/simplex/app/views/chat/item/ChatItemView.kt @@ -226,10 +226,10 @@ fun ChatItemView( } ) } + ItemInfoAction(cInfo, cItem, showItemDetails, showMenu) if (cItem.meta.itemDeleted == null && cItem.file != null && cItem.file.cancelAction != null) { CancelFileItemAction(cItem.file.fileId, showMenu, cancelFile = cancelFile, cancelAction = cItem.file.cancelAction) } - ItemInfoAction(cInfo, cItem, showItemDetails, showMenu) if (!(live && cItem.meta.isLive)) { DeleteItemAction(cItem, showMenu, questionText = deleteMessageQuestionText(), deleteMessage) }