Revert "Add menu ellipsis button to notes"

This reverts commit 390c9162ae.
This commit is contained in:
William Casarin
2023-02-17 10:24:47 -08:00
parent 5018b9aa1e
commit 7c563cb0ae
6 changed files with 48 additions and 94 deletions

View File

@@ -37,13 +37,7 @@ struct TextEvent: View {
.foregroundColor(.gray)
Spacer()
EventMenuContext(event: event, keypair: damus.keypair, target_pubkey: event.pubkey)
.padding([.bottom], 4)
}
.minimumScaleFactor(0.75)
.lineLimit(1)
EventBody(damus_state: damus, event: event, size: .normal)
@@ -65,6 +59,7 @@ struct TextEvent: View {
.id(event.id)
.frame(maxWidth: .infinity, minHeight: PFP_SIZE)
.padding([.bottom], 2)
.event_context_menu(event, keypair: damus.keypair, target_pubkey: pubkey)
}
}