mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-08 07:10:32 +00:00
9273b49b62
Signed-off-by: Adam Treat <treat.adam@gmail.com> Signed-off-by: Jared Van Bortel <jared@nomic.ai> Co-authored-by: Jared Van Bortel <jared@nomic.ai>
25 lines
504 B
QML
25 lines
504 B
QML
import QtCore
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Basic
|
|
|
|
Label {
|
|
id: mySlug
|
|
padding: 3
|
|
rightPadding: 9
|
|
leftPadding: 9
|
|
font.pixelSize: theme.fontSizeSmall
|
|
background: Rectangle {
|
|
radius: 6
|
|
border.width: 1
|
|
border.color: mySlug.color
|
|
color: theme.slugBackground
|
|
}
|
|
ToolTip.visible: ma.containsMouse && ToolTip.text !== ""
|
|
MouseArea {
|
|
id: ma
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
}
|
|
}
|