mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-20 00:24:43 +02:00
Fix logging, add "Notify me for" label, fix theme on avatar and add changes
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
import Foundation
|
||||
import Reusable
|
||||
|
||||
class RoomNotificationSettingsAvatarView: UIView, NibLoadable {
|
||||
class RoomNotificationSettingsAvatarView: UIView {
|
||||
|
||||
@IBOutlet weak var avatarView: MXKImageView!
|
||||
@IBOutlet weak var nameLabel: UILabel!
|
||||
@@ -41,3 +41,11 @@ class RoomNotificationSettingsAvatarView: UIView, NibLoadable {
|
||||
nameLabel.text = viewData.displayName
|
||||
}
|
||||
}
|
||||
|
||||
extension RoomNotificationSettingsAvatarView: NibLoadable { }
|
||||
extension RoomNotificationSettingsAvatarView: Themable {
|
||||
func update(theme: Theme) {
|
||||
nameLabel?.font = theme.fonts.title3SB
|
||||
nameLabel?.textColor = theme.textPrimaryColor
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user