cleaned and optimized launcher + added actionsview on listview items on launcher. TAB to open it or right click. Added typing animation for Crypto.qml and also anchored the icon on the left so it doesnt keep moving around when changing sizes.

This commit is contained in:
SomeElse
2026-06-09 04:06:40 +00:00
parent f59b2d6aa9
commit 8782fd2533
5 changed files with 366 additions and 316 deletions

View File

@@ -21,7 +21,13 @@ PanelWindow {
property bool popupOpen: false
property real popupCenterX: -1
function _doOpen() { hideTimer.stop(); visible = true; popupOpen = true }
function _doOpen() {
hideTimer.stop()
if (chipRoot) {
popupCenterX = chipRoot.mapToItem(null, 0, 0).x + chipRoot.width / 2
}
visible = true; popupOpen = true
}
function open() {
_doOpen()
}