fix(StatusLetterIdenticon): ensure letterSize is correct

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.
This commit is contained in:
Pascal Precht 2021-05-12 12:02:09 +02:00 committed by Iuri Matias
parent 3deb75b2fe
commit 636b39d082
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ Rectangle {
property string chatId
property string chatName
property int letterSize: root.isCompact ? 15 : 21
property int letterSize: 15
width: 40
height: 40