mirror of
https://github.com/lubosz/overte.git
synced 2025-04-16 09:29:16 +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
|
||||
var words = filter.toUpperCase().split(/\s+/).filter(identity);
|
||||
function suggestable(story) { // fixme add to makeFilteredStoryProcessor
|
||||
function suggestable(story) {
|
||||
if (story.action === 'snapshot') {
|
||||
return true;
|
||||
}
|
||||
|
@ -177,7 +177,6 @@ Column {
|
|||
}
|
||||
ListView {
|
||||
id: scroll;
|
||||
//fixme clip: true;
|
||||
model: suggestions;
|
||||
orientation: ListView.Horizontal;
|
||||
highlightMoveDuration: -1;
|
||||
|
|
|
@ -262,8 +262,8 @@ StackView {
|
|||
cardHeight: 163 + (2 * 4);
|
||||
metaverseServerUrl: addressBarDialog.metaverseServerUrl;
|
||||
labelText: 'HAPPENING NOW';
|
||||
actions: 'concurrency,snapshot'; // uncomment this line instead of next to produce fake announcement data for testing.
|
||||
//actions: 'announcement';
|
||||
//actions: 'concurrency,snapshot'; // uncomment this line instead of next to produce fake announcement data for testing.
|
||||
actions: 'announcement';
|
||||
filter: addressLine.text;
|
||||
goFunction: goCard;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue