summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Wickham <twickham@google.com>2016-09-28 16:22:36 -0700
committerTony Wickham <twickham@google.com>2016-09-28 16:22:36 -0700
commite0dab19c7157a5d46ced9bd82799972e4a41841f (patch)
treedb0b0e8515e2f15c6a24aad1cc73bdcadab8c78e
parent9311387a227d7bd894d880b897fb80ca34b39405 (diff)
downloadandroid_packages_apps_Trebuchet-e0dab19c7157a5d46ced9bd82799972e4a41841f.tar.gz
android_packages_apps_Trebuchet-e0dab19c7157a5d46ced9bd82799972e4a41841f.tar.bz2
android_packages_apps_Trebuchet-e0dab19c7157a5d46ced9bd82799972e4a41841f.zip
Decrease drop target left and right padding.
Otherwise it looks like we are aggressively truncating the text even though there is plenty of room to show it. Bug: 31790418 Change-Id: Ia1cdc232f05815732d4cb95b954e935724a200fd
-rw-r--r--res/values/styles.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/values/styles.xml b/res/values/styles.xml
index 87a56295a..cd06b7560 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -101,8 +101,8 @@
<!-- Drop targets -->
<style name="DropTargetButtonBase">
<item name="android:drawablePadding">7.5dp</item>
- <item name="android:paddingLeft">25dp</item>
- <item name="android:paddingRight">25dp</item>
+ <item name="android:paddingLeft">16dp</item>
+ <item name="android:paddingRight">16dp</item>
<item name="android:textColor">#FFFFFFFF</item>
<item name="android:textSize">@dimen/drop_target_text_size</item>
<item name="android:singleLine">true</item>