Fix margin when scaled

This commit is contained in:
Kai Folf 2023-04-08 19:48:03 +07:00
parent 7ed46d101a
commit f887a640ac
No known key found for this signature in database
2 changed files with 2 additions and 3 deletions

View file

@ -22,7 +22,6 @@ To change the color, right click on Sharkle > Configure Sharkle > Change color a
## To-do ## To-do
- [ ] Fix missing icon - [ ] Fix missing icon
- [ ] Fix margin when the widget is resized
- [ ] Upload to KDE Store?? - [ ] Upload to KDE Store??
## License ## License

View file

@ -84,9 +84,9 @@ Item {
width: parent.width width: parent.width
height: parent.height height: parent.height
anchors.right: idleImage.left anchors.right: idleImage.left
anchors.rightMargin: -60 anchors.rightMargin: -60*(Math.min(parent.width, parent.height)/200)
anchors.bottom: idleImage.top anchors.bottom: idleImage.top
anchors.bottomMargin: -60 anchors.bottomMargin: -60*(Math.min(parent.width, parent.height)/200)
source: "../images/" + sharkleColor + "/talk/" + (talkIndex) + ".png" source: "../images/" + sharkleColor + "/talk/" + (talkIndex) + ".png"
visible: !isIdle visible: !isIdle