mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-08-14 22:11:49 +00:00
17 lines
489 B
QML
17 lines
489 B
QML
|
|
// SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
||
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
|
||
|
|
import QtQuick 2.15
|
||
|
|
|
||
|
|
import org.kde.plasma.private.mobileshell.shellsettingsplugin as ShellSettings
|
||
|
|
import org.kde.plasma.private.mobileshell.hapticsplugin as HapticsPlugin
|
||
|
|
|
||
|
|
QtObject {
|
||
|
|
function buttonVibrate() {
|
||
|
|
if (ShellSettings.Settings.vibrationsEnabled) {
|
||
|
|
HapticsPlugin.VibrationManager.vibrate(ShellSettings.Settings.vibrationDuration);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|