mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-28 07:50:37 +02:00
remove debugging
This commit is contained in:
parent
aed762e986
commit
0ad8f4d985
2 changed files with 3 additions and 4 deletions
|
@ -126,7 +126,7 @@ Column {
|
||||||
}
|
}
|
||||||
function makeFilteredStoryProcessor() { // answer a function(storyData) that adds it to suggestions if it matches
|
function makeFilteredStoryProcessor() { // answer a function(storyData) that adds it to suggestions if it matches
|
||||||
var words = filter.toUpperCase().split(/\s+/).filter(identity);
|
var words = filter.toUpperCase().split(/\s+/).filter(identity);
|
||||||
function suggestable(story) { // fixme add to makeFilteredStoryProcessor
|
function suggestable(story) {
|
||||||
if (story.action === 'snapshot') {
|
if (story.action === 'snapshot') {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -177,7 +177,6 @@ Column {
|
||||||
}
|
}
|
||||||
ListView {
|
ListView {
|
||||||
id: scroll;
|
id: scroll;
|
||||||
//fixme clip: true;
|
|
||||||
model: suggestions;
|
model: suggestions;
|
||||||
orientation: ListView.Horizontal;
|
orientation: ListView.Horizontal;
|
||||||
highlightMoveDuration: -1;
|
highlightMoveDuration: -1;
|
||||||
|
|
|
@ -262,8 +262,8 @@ StackView {
|
||||||
cardHeight: 163 + (2 * 4);
|
cardHeight: 163 + (2 * 4);
|
||||||
metaverseServerUrl: addressBarDialog.metaverseServerUrl;
|
metaverseServerUrl: addressBarDialog.metaverseServerUrl;
|
||||||
labelText: 'HAPPENING NOW';
|
labelText: 'HAPPENING NOW';
|
||||||
actions: 'concurrency,snapshot'; // uncomment this line instead of next to produce fake announcement data for testing.
|
//actions: 'concurrency,snapshot'; // uncomment this line instead of next to produce fake announcement data for testing.
|
||||||
//actions: 'announcement';
|
actions: 'announcement';
|
||||||
filter: addressLine.text;
|
filter: addressLine.text;
|
||||||
goFunction: goCard;
|
goFunction: goCard;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue