dorian
dc26169fe0
- new text inputs - new delegate highlighting - better text scaling - some cleanup
20 lines
421 B
QML
20 lines
421 B
QML
import QtQuick 2.0
|
|
import QtQuick.Controls 2.2
|
|
|
|
SmoothItemDelegate {
|
|
id: control
|
|
text: ""
|
|
|
|
Image {
|
|
id: forwardImage
|
|
source: appTheme.style.backIcon
|
|
rotation: 180
|
|
height: control.height * 0.4
|
|
width: height
|
|
anchors {
|
|
verticalCenter: parent.verticalCenter
|
|
right: parent.right
|
|
rightMargin: control.width * 0.01
|
|
}
|
|
}
|
|
}
|