blob: b1575887439c78ba73410de2da90b79db613716c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Qt-Commercial
import QtQuick
import QtQuick.Controls
// Allows dragging the window when placed on an unused section of the UI.
DragHandler {
required property var dragWindow
target: null
onActiveChanged: {
if (active) dragWindow.startSystemMove()
}
}
|