forked from github_mirror/framelesshelper
18 lines
348 B
QML
18 lines
348 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
Button {
|
|
id: control
|
|
|
|
implicitWidth: 16
|
|
implicitHeight: 14
|
|
|
|
contentItem: Image {
|
|
anchors.fill: control
|
|
source: control.down
|
|
|| control.hovered ? "qrc:/images/previous_blue_light.png" : "qrc:/images/previous_blue.png"
|
|
}
|
|
|
|
background: Item {}
|
|
}
|