mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 15:09:34 +02:00
fix double click selection
This commit is contained in:
parent
776b8b8fc7
commit
8e1cfb5a06
1 changed files with 6 additions and 1 deletions
|
@ -239,11 +239,16 @@ function loaded() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function onRowDoubleClicked() {
|
function onRowDoubleClicked() {
|
||||||
|
let selection = [this.dataset.entityID];
|
||||||
|
updateSelectedEntities(selection, false);
|
||||||
|
|
||||||
EventBridge.emitWebEvent(JSON.stringify({
|
EventBridge.emitWebEvent(JSON.stringify({
|
||||||
type: "selectionUpdate",
|
type: "selectionUpdate",
|
||||||
focus: true,
|
focus: true,
|
||||||
entityIds: [this.dataset.entityID],
|
entityIds: selection,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
refreshFooter();
|
||||||
}
|
}
|
||||||
|
|
||||||
function decimalMegabytes(number) {
|
function decimalMegabytes(number) {
|
||||||
|
|
Loading…
Reference in a new issue