diff options
author | 2015-08-21 17:18:52 +0000 | |
---|---|---|
committer | 2015-08-21 17:18:52 +0000 | |
commit | 4dce463cfc34e96acbcbcba440a00f40815e3ea2 (patch) | |
tree | 8ceaea85c38a727c2f1c33aa29c47dde6c82ed54 | |
parent | 2f967f3e4131e9b245ec9ce434bf5c23f47482a1 (diff) | |
parent | c22e01920f2c311cdd02f5df0a5f366b9163c4ab (diff) |
Merge "Scroll handle should have intrinsic width and height"
-rw-r--r-- | core/res/res/drawable/scrollbar_handle_material.xml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/core/res/res/drawable/scrollbar_handle_material.xml b/core/res/res/drawable/scrollbar_handle_material.xml index 56fececcc2c2..33efbbac8690 100644 --- a/core/res/res/drawable/scrollbar_handle_material.xml +++ b/core/res/res/drawable/scrollbar_handle_material.xml @@ -17,6 +17,9 @@ <shape xmlns:android="http://schemas.android.com/apk/res/android" android:tint="?attr/colorControlNormal" android:shape="rectangle"> - <solid android:color="#84ffffff" /> - <size android:width="4dp" /> + <solid + android:color="#84ffffff" /> + <size + android:width="4dp" + android:height="4dp" /> </shape> |