mirror of
https://github.com/JulianGro/overte.git
synced 2025-05-06 17:49:05 +02:00
Fix RunningScripts in tablet mode
This commit is contained in:
parent
abbe263142
commit
6cdbf0c44a
1 changed files with 11 additions and 7 deletions
|
@ -400,6 +400,17 @@ Rectangle {
|
||||||
colorScheme: hifi.colorSchemes.dark
|
colorScheme: hifi.colorSchemes.dark
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
|
|
||||||
|
TableViewColumn {
|
||||||
|
role: "display";
|
||||||
|
}
|
||||||
|
|
||||||
|
onActivated: {
|
||||||
|
var path = scriptsModel.data(index, 0x100)
|
||||||
|
if (path) {
|
||||||
|
loadScript(path)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
HifiControls.VerticalSpacer {
|
HifiControls.VerticalSpacer {
|
||||||
|
@ -426,13 +437,6 @@ Rectangle {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onActivated: {
|
|
||||||
var path = scriptsModel.data(index, 0x100)
|
|
||||||
if (path) {
|
|
||||||
loadScript(path)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
|
|
Loading…
Reference in a new issue