From 97eff2838373ae89a9cd98d7d7d85578cdcd6e3d Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 6 Mar 2018 05:18:30 -0500 Subject: [PATCH] QML: Remove binding for quit key in presentation --- src/qml/calamares/slideshow/Presentation.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qml/calamares/slideshow/Presentation.qml b/src/qml/calamares/slideshow/Presentation.qml index da5048035..4843e15a6 100644 --- a/src/qml/calamares/slideshow/Presentation.qml +++ b/src/qml/calamares/slideshow/Presentation.qml @@ -7,6 +7,7 @@ * - drop navigation through entering a slide number * (this and the 'c' key make sense in a *presentation* * slideshow, not in a passive slideshow like Calamares) + * - remove quit key * * SPDX-License-Identifier: LGPL-2.1 * License-Filename: LICENSES/LGPLv2.1-Presentation @@ -62,7 +63,7 @@ Item { property variant slides: [] property int currentSlide: 0 - + property bool loopSlides: true property bool showNotes: false; @@ -146,7 +147,6 @@ Item { // standard shortcuts Shortcut { sequence: StandardKey.MoveToNextPage; onActivated: goToNextSlide() } Shortcut { sequence: StandardKey.MoveToPreviousPage; onActivated: goToPreviousSlide() } - Shortcut { sequence: StandardKey.Quit; onActivated: Qt.quit() } MouseArea { id: mouseArea