You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
625 B
22 lines
625 B
/* |
|
SPDX-FileCopyrightText: 2019 Kai Uwe Broulik <kde@privat.broulik.de> |
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL |
|
*/ |
|
|
|
import QtQuick 2.9 |
|
import QtQuick.Layouts 1.1 |
|
import QtQuick.Controls 2.3 as QtControls |
|
import org.kde.kirigami 2.7 as Kirigami |
|
|
|
Kirigami.Page { |
|
id: positionPage |
|
|
|
title: i18n("Popup Position") |
|
|
|
ScreenPositionSelector { |
|
anchors.horizontalCenter: parent.horizontalCenter |
|
selectedPosition: kcm.notificationSettings.popupPosition |
|
onSelectedPositionChanged: kcm.notificationSettings.popupPosition = selectedPosition |
|
} |
|
}
|
|
|