From 07901068625792b8625175b06b637f58fde59b57 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Sun, 9 Feb 2025 11:35:24 +0100 Subject: [PATCH] improve title bar's tap feedback when the title bar is tapped, the alpha changes for a second, to give feedback. however, that was missed out for the "green checkmark" icon, which looked a bit unpolished. --- deltachat-ios/View/ChatTitleView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/deltachat-ios/View/ChatTitleView.swift b/deltachat-ios/View/ChatTitleView.swift index 67e39bd6e..bb7df5718 100644 --- a/deltachat-ios/View/ChatTitleView.swift +++ b/deltachat-ios/View/ChatTitleView.swift @@ -71,5 +71,6 @@ class ChatTitleView: UIStackView { func setEnabled(_ enabled: Bool) { titleLabel.isEnabled = enabled subtitleLabel.isEnabled = enabled + verifiedView.alpha = enabled ? 1 : 0.4 } }