11 lines
191 B
QML
11 lines
191 B
QML
|
|
import QtQuick
|
|||
|
|
import QtQuick.Controls.Styles
|
|||
|
|
Component {
|
|||
|
|
ToolBarStyle {
|
|||
|
|
background: Rectangle {
|
|||
|
|
implicitWidth: 20
|
|||
|
|
implicitHeight: 35
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|