summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/src/androidTest/java/de/test/antennapod/feed/FeedFilterTest.java2
-rw-r--r--app/src/main/res/layout/feedinfo.xml4
-rw-r--r--core/src/main/res/values/strings.xml2
3 files changed, 6 insertions, 2 deletions
diff --git a/app/src/androidTest/java/de/test/antennapod/feed/FeedFilterTest.java b/app/src/androidTest/java/de/test/antennapod/feed/FeedFilterTest.java
index 0308ff9a8..23a05ac8c 100644
--- a/app/src/androidTest/java/de/test/antennapod/feed/FeedFilterTest.java
+++ b/app/src/androidTest/java/de/test/antennapod/feed/FeedFilterTest.java
@@ -54,7 +54,7 @@ public class FeedFilterTest extends AndroidTestCase {
}
public void testComplexIncludeFilter() throws Exception {
- String includeFilter = "Hello \"Two words\"";
+ String includeFilter = "Hello \n\"Two words\"";
FeedFilter filter = new FeedFilter(includeFilter, "");
FeedItem item = new FeedItem();
item.setTitle("hello world");
diff --git a/app/src/main/res/layout/feedinfo.xml b/app/src/main/res/layout/feedinfo.xml
index e991c243c..efc367c8b 100644
--- a/app/src/main/res/layout/feedinfo.xml
+++ b/app/src/main/res/layout/feedinfo.xml
@@ -316,6 +316,10 @@
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
+ android:lines="8"
+ android:minLines="1"
+ android:maxLines="20"
+ android:scrollbars="vertical"
android:hint="@string/episode_filters_hint"
android:focusable="true"
android:focusableInTouchMode="true"
diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml
index 717c5e9c3..b8f6f7065 100644
--- a/core/src/main/res/values/strings.xml
+++ b/core/src/main/res/values/strings.xml
@@ -535,7 +535,7 @@
<string name="episode_filters_description">List of terms used to decide if an episode should be included or excluded when auto downloading</string>
<string name="episode_filters_include">Include</string>
<string name="episode_filters_exclude">Exclude</string>
- <string name="episode_filters_hint">Filter text</string>
+ <string name="episode_filters_hint">Single words \n\"Multiple Words\"</string>
<!-- Progress information -->
<string name="progress_upgrading_database">Upgrading the database</string>