From 9aa6046cddeafa8c273570ee0a42e2f9696b06db Mon Sep 17 00:00:00 2001 From: Nydragon Date: Mon, 25 Nov 2024 20:03:47 +0100 Subject: [PATCH] chore: various stuffs --- src/provider/Weather.qml | 2 +- src/widgets/mpris/MprisSmall.qml | 3 +-- src/widgets/notifications/NotificationToast.qml | 14 ++++++++++++++ .../notificationtoast/NotificationToasts.qml | 2 ++ 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/src/provider/Weather.qml b/src/provider/Weather.qml index be935db..094155d 100644 --- a/src/provider/Weather.qml +++ b/src/provider/Weather.qml @@ -46,7 +46,7 @@ Singleton { case "296": return day ? "weather-showers-scattered" : "weather-showers-scattered-night"; default: - console.log("Unknown weather code: ", weatherCode); + console.log("Unknown weather code:", weatherCode); return "weather-none-available"; } } diff --git a/src/widgets/mpris/MprisSmall.qml b/src/widgets/mpris/MprisSmall.qml index 54f9434..236727d 100644 --- a/src/widgets/mpris/MprisSmall.qml +++ b/src/widgets/mpris/MprisSmall.qml @@ -7,12 +7,11 @@ import QtQuick import Quickshell.Services.Mpris import Quickshell import "../../base" -import "../../provider" BRectangle { id: mprisSmall Layout.fillWidth: true - Layout.preferredHeight: 200 + height: 200 radius: 15 clip: true diff --git a/src/widgets/notifications/NotificationToast.qml b/src/widgets/notifications/NotificationToast.qml index e33e8e1..3b99d03 100644 --- a/src/widgets/notifications/NotificationToast.qml +++ b/src/widgets/notifications/NotificationToast.qml @@ -34,6 +34,20 @@ MouseArea { signal close + TextEdit { + id: textEdit + visible: false + } + + Shortcut { + sequences: [StandardKey.Copy] + onActivated: { + textEdit.text = toast.body; + textEdit.selectAll(); + textEdit.copy(); + } + } + BRectangle { id: box width: parent.width diff --git a/src/windows/notificationtoast/NotificationToasts.qml b/src/windows/notificationtoast/NotificationToasts.qml index b06a4e4..19f5965 100644 --- a/src/windows/notificationtoast/NotificationToasts.qml +++ b/src/windows/notificationtoast/NotificationToasts.qml @@ -23,6 +23,8 @@ PanelWindow { width: popups.width } + focusable: true + color: "transparent" width: 500