c866ac87a9
As suggested in the Qt Quick coding style
18 lines
387 B
QML
18 lines
387 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Layouts 1.4
|
|
import "../base" as Base
|
|
|
|
Base.HToolButton {
|
|
function toolBarIsBig() {
|
|
return sidePane.width >
|
|
Layout.minimumWidth * (toolBar.children.length - 2)
|
|
}
|
|
|
|
id: button
|
|
visible: toolBarIsBig()
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
Layout.minimumWidth: height
|
|
}
|