kwin/tests/pointergesturestest.qml
Vlad Zahorodnii 4148be0d27 Port to versionless QML module imports
It's more convenient and Qt upstream seems to encourage to use it too,
e.g. example import statements have no version.
2023-03-12 14:18:34 +00:00

16 lines
348 B
QML

/*
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
import QtQuick
import org.kde.kwin.tests
Image {
source: "../48-apps-kwin.png"
scale: gesture.scale * gesture.progressScale
PinchGesture {
id: gesture
}
}