12 lines
236 B
QML
12 lines
236 B
QML
|
import QtQuick 2.0
|
||
|
|
||
|
Toolbar {
|
||
|
enabled: false
|
||
|
height: parent.height - primary_toolbar.height
|
||
|
anchors.left: primary_toolbar.left
|
||
|
anchors.top: primary_toolbar.bottom
|
||
|
|
||
|
onEnabledChanged: primary_toolbar.current = this
|
||
|
}
|
||
|
|