aboutsummaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml14
1 files changed, 12 insertions, 2 deletions
diff --git a/main.qml b/main.qml
index 31ebb0d..20a1da6 100644
--- a/main.qml
+++ b/main.qml
@@ -3,11 +3,21 @@ import QtQuick.Window 2.2
import QtQuick.Extras 1.4
import QtQuick.Controls 2.3
+
Window {
- id: window
- visible: true
width: 400
height: 125
+
+ // Make window not resizeable
+ maximumHeight: height
+ maximumWidth: width
+
+ // Make window not resizeable
+ minimumHeight: height
+ minimumWidth: width
+
+ id: window
+ visible: true
opacity: 1
title: qsTr("Remote Support for your Desktop")