소스 검색

Wayland window management work around

Donald Carr 8 년 전
부모
커밋
d010b3bc97
1개의 변경된 파일12개의 추가작업 그리고 1개의 파일을 삭제
  1. 12 1
      qml/main.qml

+ 12 - 1
qml/main.qml

@@ -266,6 +266,17 @@ Window {
     }
 
     Component.onCompleted: {
-        showAtCorrectSize()
+        showTimer.start()
+    }
+
+    Timer {
+        id: showTimer
+
+        running: false
+        repeat: false
+        interval: 1
+        onTriggered: {
+            showAtCorrectSize()
+        }
     }
 }