shift-shell/containments/homescreens/folio/qml/private/Orientation.qml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
221 B
QML
Raw Normal View History

2023-11-05 05:14:39 +00:00
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
// SPDX-License-Identifier: LGPL-2.0-or-later
import QtQuick
QtObject {
enum Orientation {
Above,
Below,
Left,
Right
}
}