mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Set proper emoji font for device verification
This commit is contained in:
parent
2088053d26
commit
480c4bc8f5
1 changed files with 8 additions and 0 deletions
|
@ -2,6 +2,7 @@ import QtQuick 2.3
|
|||
import QtQuick.Controls 2.10
|
||||
import QtQuick.Window 2.2
|
||||
import QtQuick.Layouts 1.10
|
||||
import Qt.labs.settings 1.0
|
||||
|
||||
import im.nheko 1.0
|
||||
|
||||
|
@ -13,6 +14,12 @@ ApplicationWindow {
|
|||
|
||||
palette: colors
|
||||
|
||||
Settings {
|
||||
id: settings
|
||||
category: "user"
|
||||
property bool emoji_font_family: true
|
||||
}
|
||||
|
||||
height: stack.implicitHeight
|
||||
width: stack.implicitWidth
|
||||
StackView {
|
||||
|
@ -271,6 +278,7 @@ ApplicationWindow {
|
|||
Layout.alignment: Qt.AlignHCenter
|
||||
text: col.emoji.emoji
|
||||
font.pixelSize: Qt.application.font.pixelSize * 4
|
||||
font.family: settings.emoji_font_family
|
||||
}
|
||||
Text {
|
||||
Layout.alignment: Qt.AlignHCenter | Qt.AlignBottom
|
||||
|
|
Loading…
Reference in a new issue