Skip to content

Commit

Permalink
better visible 'saved' state in menu
Browse files Browse the repository at this point in the history
inspired from mastodon:
- unfilled = unsaved, filled = saved
- the filled variant is used in the bubbles as well,
  so it makes sense to slash that out

this is nitpicky, no one will really care ;)

main noticable advantage is,
that save and unsave icon are better distinguishable.

i tried same for pin and other states,
but there the effect is much less, as less often used and anyways more visible by eg. reordering,
may even look like a bug to use different icons.
  • Loading branch information
r10s committed Feb 10, 2025
1 parent 8bb2877 commit 30a191f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deltachat-ios/Chat/ChatViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1920,7 +1920,7 @@ extension ChatViewController {
if !dcChat.isSelfTalk && message.canSave {
if message.savedMessageId != 0 {
children.append(
UIAction.menuAction(localizationKey: "unsave", systemImageName: "bookmark.slash", indexPath: indexPath, action: toggleSave)
UIAction.menuAction(localizationKey: "unsave", systemImageName: "bookmark.slash.fill", indexPath: indexPath, action: toggleSave)
)
} else {
children.append(
Expand Down

0 comments on commit 30a191f

Please sign in to comment.