mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
636b39d082
Due to historic reasons, conditionally assign a font size for the letter identicon, based on whether or not the app's compact mode is active. Compact mode has become the new default a while back and the component's `isCompact` property isn't set anywhere in throughout the application, resulting in `letterSize` to always be `21`, which is too big. This commit removes the condition, defaulting to always having a letter size of 15 pixels as designed.
36 lines
832 B
QML
36 lines
832 B
QML
import QtQuick 2.13
|
|
import "../../imports"
|
|
import "../../shared"
|
|
|
|
Rectangle {
|
|
id: root
|
|
|
|
property string chatId
|
|
property string chatName
|
|
property int letterSize: 15
|
|
|
|
width: 40
|
|
height: 40
|
|
radius: width / 2
|
|
|
|
color: {
|
|
const color = chatsModel.getChannelColor(chatId)
|
|
if (!color) {
|
|
return Style.current.orange
|
|
}
|
|
return color
|
|
}
|
|
|
|
StyledText {
|
|
text: (root.chatName.charAt(0) == "#" ? root.chatName.charAt(1) : root.chatName.charAt(0)).toUpperCase()
|
|
opacity: 0.7
|
|
font.weight: Font.Bold
|
|
font.pixelSize: root.letterSize
|
|
color: "white"
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.leftMargin: -1
|
|
anchors.bottomMargin: -2
|
|
}
|
|
}
|