Skip to content
Snippets Groups Projects
Verified Commit 07ffd9e7 authored by Joe Donofry's avatar Joe Donofry
Browse files

Fix UserSettings in QML

parent 6bb73f84
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ Flow {
TextMetrics {
id: textMetrics
font.family: settings.emoji_font_family
font.family: settings.emojiFont
elide: Text.ElideRight
elideWidth: 150
text: model.key
......@@ -58,7 +58,7 @@ Flow {
anchors.baseline: reactionCounter.baseline
id: reactionText
text: textMetrics.elidedText + (textMetrics.elidedText == textMetrics.text ? "" : "")
font.family: settings.emoji_font_family
font.family: settings.emojiFont
color: reaction.hovered ? colors.highlight : colors.text
maximumLineCount: 1
}
......
......@@ -71,7 +71,7 @@ MouseArea {
pixelDelta = wheel.pixelDelta.y
}
pixelDelta = Math.round(pixelDelta)
pixelDelta = Math.round(pixelDelta)
if (!pixelDelta) {
return flickableItem.contentY;
......
......@@ -25,20 +25,6 @@ Page {
id: fontMetrics
}
Settings {
id: settings
category: "user"
property bool avatar_circles: true
property string emoji_font_family: "default"
}
Settings {
id: timelineSettings
category: "user/timeline"
property bool buttons: true
property bool message_hover_highlight: false
}
EmojiPicker {
id: emojiPopup
width: 7 * 52 + 20
......
......@@ -76,7 +76,7 @@ Popup {
contentItem: Text {
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
font.family: settings.emoji_font_family
font.family: settings.emojiFont
font.pixelSize: 36
text: model.unicode
......@@ -276,7 +276,7 @@ Popup {
sourceSize.height: 32
fillMode: Image.Pad
smooth: true
source: "image://colorimage/:/icons/icons/ui/search.png?" + (parent.hovered ? colors.highlight : colors.buttonText)
source: "image://colorimage/:/icons/icons/emoji-categories/search.png?" + (parent.hovered ? colors.highlight : colors.buttonText)
}
MouseArea
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment