From 91a5f9790cfd4a98ee940633694fb512ecf24942 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Thu, 6 Aug 2026 00:29:36 +0530 Subject: i3 > hyprland & x11 > wayland --- quickshell/IconButton.qml | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 quickshell/IconButton.qml (limited to 'quickshell/IconButton.qml') diff --git a/quickshell/IconButton.qml b/quickshell/IconButton.qml deleted file mode 100644 index 96c4c7f..0000000 --- a/quickshell/IconButton.qml +++ /dev/null @@ -1,41 +0,0 @@ -import QtQuick - -MouseArea { - id: iconButton - - property string icon: "" - property string tooltip: "" - - width: 32 - height: 32 - - hoverEnabled: true - cursorShape: Qt.PointingHandCursor - enabled: true - z: 10 - - Rectangle { - anchors.fill: parent - color: "transparent" - radius: 6 - - Behavior on color { - ColorAnimation { duration: 200 } - } - - Text { - id: iconText - anchors.centerIn: parent - text: iconButton.icon - font.family: shellRoot.fontFamily - font.pixelSize: 22 - color: shellRoot.white - - Component.onCompleted: { - console.log("IconButton text:", iconButton.icon, "length:", iconButton.icon.length) - } - } - } - - -} -- cgit v1.2.3