mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-18 09:26:13 +02:00
Merge pull request #11434 from Atlante45/fix/running-scripts-tablet
Fix RunningScripts in tablet mode
This commit is contained in:
commit
ecca1fea93
1 changed files with 11 additions and 7 deletions
|
@ -400,6 +400,17 @@ Rectangle {
|
|||
colorScheme: hifi.colorSchemes.dark
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
|
||||
TableViewColumn {
|
||||
role: "display";
|
||||
}
|
||||
|
||||
onActivated: {
|
||||
var path = scriptsModel.data(index, 0x100)
|
||||
if (path) {
|
||||
loadScript(path)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
HifiControls.VerticalSpacer {
|
||||
|
@ -426,13 +437,6 @@ Rectangle {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
onActivated: {
|
||||
var path = scriptsModel.data(index, 0x100)
|
||||
if (path) {
|
||||
loadScript(path)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Item {
|
||||
|
|
Loading…
Reference in a new issue