mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
24 lines
435 B
QML
24 lines
435 B
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 2.1
|
|
import com.github.nheko 1.0
|
|
|
|
Rectangle {
|
|
id: indicator
|
|
color: "transparent"
|
|
width: 16
|
|
height: 16
|
|
ToolTip.visible: ma.containsMouse && indicator.visible
|
|
ToolTip.text: qsTr("Encrypted")
|
|
MouseArea{
|
|
id: ma
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
}
|
|
|
|
Image {
|
|
id: stateImg
|
|
anchors.fill: parent
|
|
source: "image://colorimage/:/icons/icons/ui/lock.png?"+colors.buttonText
|
|
}
|
|
}
|
|
|