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