moment/src/gui/Base/HFlickableColumnPage.qml

35 lines
713 B
QML
Raw Normal View History

// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
import "../ShortcutBundles"
HPage {
property alias flickable: flickable
default property alias columnData: column.data
HFlickable {
id: flickable
anchors.fill: parent
clip: true
contentWidth: parent.width
contentHeight: column.childrenRect.height
FlickShortcuts {
active: ! mainUI.debugConsole.visible
flickable: flickable
}
HColumnLayout {
id: column
width: flickable.width
height: flickable.height
}
}
HTrackpadFix {
flickable: flickable
anchors.fill: flickable
}
}