From 6f1e23437c2e137e7ab466eeaffee1dfb727b2b2 Mon Sep 17 00:00:00 2001 From: bbedward Date: Mon, 14 Jul 2025 15:34:18 -0400 Subject: [PATCH] Fix the image input --- Widgets/SettingsPopup.qml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Widgets/SettingsPopup.qml b/Widgets/SettingsPopup.qml index cd2dc88e..3848f54e 100644 --- a/Widgets/SettingsPopup.qml +++ b/Widgets/SettingsPopup.qml @@ -271,16 +271,23 @@ PanelWindow { // Placeholder text Text { anchors.verticalCenter: parent.verticalCenter - text: "Enter image path or URL" - color: Theme.surfaceVariantText + text: "Enter image path or URL..." + color: Qt.rgba(Theme.surfaceVariantText.r, Theme.surfaceVariantText.g, Theme.surfaceVariantText.b, 0.6) font.pixelSize: Theme.fontSizeMedium visible: profileImageInput.text.length === 0 && !profileImageInput.activeFocus } + + MouseArea { + anchors.fill: parent + hoverEnabled: true + cursorShape: Qt.IBeamCursor + acceptedButtons: Qt.NoButton + } } } Text { - text: "Image will be automatically cropped to a circle" + text: "Local filesystem path or URL to an image file." font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceVariantText wrapMode: Text.WordWrap