From f887a640ac5eefc138722360f98319c7ee21fe25 Mon Sep 17 00:00:00 2001 From: Kai Folf Date: Sat, 8 Apr 2023 19:48:03 +0700 Subject: [PATCH] Fix margin when scaled --- README.md | 1 - contents/ui/main.qml | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5e9cea5..ff5798c 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,6 @@ To change the color, right click on Sharkle > Configure Sharkle > Change color a ## To-do - [ ] Fix missing icon -- [ ] Fix margin when the widget is resized - [ ] Upload to KDE Store?? ## License diff --git a/contents/ui/main.qml b/contents/ui/main.qml index 4b13726..ec84047 100644 --- a/contents/ui/main.qml +++ b/contents/ui/main.qml @@ -84,9 +84,9 @@ Item { width: parent.width height: parent.height anchors.right: idleImage.left - anchors.rightMargin: -60 + anchors.rightMargin: -60*(Math.min(parent.width, parent.height)/200) anchors.bottom: idleImage.top - anchors.bottomMargin: -60 + anchors.bottomMargin: -60*(Math.min(parent.width, parent.height)/200) source: "../images/" + sharkleColor + "/talk/" + (talkIndex) + ".png" visible: !isIdle