diff --git a/Riot/Assets/Images.xcassets/Call/call_dialpad_backspace_icon.imageset/Contents.json b/Riot/Assets/Images.xcassets/Call/call_dialpad_backspace_icon.imageset/Contents.json index df240cf11..713667a8c 100644 --- a/Riot/Assets/Images.xcassets/Call/call_dialpad_backspace_icon.imageset/Contents.json +++ b/Riot/Assets/Images.xcassets/Call/call_dialpad_backspace_icon.imageset/Contents.json @@ -19,5 +19,8 @@ "info" : { "author" : "xcode", "version" : 1 + }, + "properties" : { + "template-rendering-intent" : "template" } } diff --git a/Riot/Modules/Call/Dialpad/DialpadViewController.storyboard b/Riot/Modules/Call/Dialpad/DialpadViewController.storyboard index c38b5107d..33d53a158 100644 --- a/Riot/Modules/Call/Dialpad/DialpadViewController.storyboard +++ b/Riot/Modules/Call/Dialpad/DialpadViewController.storyboard @@ -1,9 +1,9 @@ - + - + @@ -240,6 +240,7 @@ + diff --git a/Riot/Modules/Call/Dialpad/Views/DialpadActionButton.swift b/Riot/Modules/Call/Dialpad/Views/DialpadActionButton.swift index 3426269d5..a14d945a5 100644 --- a/Riot/Modules/Call/Dialpad/Views/DialpadActionButton.swift +++ b/Riot/Modules/Call/Dialpad/Views/DialpadActionButton.swift @@ -30,9 +30,11 @@ class DialpadActionButton: DialpadButton { override func update(theme: Theme) { switch type { case .backspace: - backgroundColor = theme.warningColor + backgroundColor = .clear + tintColor = theme.noticeSecondaryColor case .call: backgroundColor = theme.tintColor + tintColor = .white } }