nysh/src/widgets/MprisBig/PlayerSwitcherButton.qml

12 lines
234 B
QML

import QtQuick
import QtQuick.Controls
Button {
hoverEnabled: true
background: Rectangle {
color: "transparent"
border.color: parent.hovered ? "red" : "blue"
border.width: 2
radius: 20
}
}