- Move out all shortcuts from their central file to the component they actually belong to - Get rid of DebugConsoleLoader and the multiple consoles handling mess, have only one global console
14 lines
205 B
QML
14 lines
205 B
QML
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
import QtQuick 2.12
|
|
|
|
HPage {
|
|
default property alias columnData: column.data
|
|
|
|
|
|
HColumnLayout {
|
|
id: column
|
|
anchors.fill: parent
|
|
}
|
|
}
|