From 0ad8f4d985ed7727f9d8cf76bf5d7fec5935c439 Mon Sep 17 00:00:00 2001 From: Howard Stearns Date: Fri, 28 Apr 2017 07:15:22 -0700 Subject: [PATCH] remove debugging --- interface/resources/qml/hifi/Feed.qml | 3 +-- interface/resources/qml/hifi/tablet/TabletAddressDialog.qml | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/interface/resources/qml/hifi/Feed.qml b/interface/resources/qml/hifi/Feed.qml index 8cae42f21c..b03144644a 100644 --- a/interface/resources/qml/hifi/Feed.qml +++ b/interface/resources/qml/hifi/Feed.qml @@ -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; diff --git a/interface/resources/qml/hifi/tablet/TabletAddressDialog.qml b/interface/resources/qml/hifi/tablet/TabletAddressDialog.qml index 3ccdd93542..9689583649 100644 --- a/interface/resources/qml/hifi/tablet/TabletAddressDialog.qml +++ b/interface/resources/qml/hifi/tablet/TabletAddressDialog.qml @@ -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; }