mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-30 15:03:03 +02:00
10 lines
No EOL
317 B
JavaScript
10 lines
No EOL
317 B
JavaScript
function openView() {
|
|
// Set up the qml ui
|
|
var window = Desktop.createWindow(Script.resolvePath('luci.qml'), {
|
|
title: this.title,
|
|
presentationMode: Desktop.PresentationMode.NATIVE,
|
|
size: {x: 300, y: 400}
|
|
});
|
|
//window.closed.connect(function() { Script.stop(); });
|
|
}
|
|
openView(); |