diff options
author | ezio84 <brabus84@gmail.com> | 2019-01-12 18:40:50 +0100 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2021-09-27 21:17:05 +0800 |
commit | 04cb59138810a825b3f73e11f40901bc3a2246a3 (patch) | |
tree | c98dc54327e60abed13d1ee97944c8b6b2147c10 | |
parent | 7cdad0a62f87085a46593a4f29d6e3b1edf0bce2 (diff) |
Trebuchet: Hide drag arrow
Signed-off-by: spezi77 <spezi7713@gmx.net>
Change-Id: Id7390e6494f56b27312366b9e56f7744e8da102d
-rw-r--r-- | res/drawable/drag_handle_indicator_no_shadow.xml | 18 | ||||
-rw-r--r-- | res/drawable/ic_drag_handle.xml | 16 |
2 files changed, 10 insertions, 24 deletions
diff --git a/res/drawable/drag_handle_indicator_no_shadow.xml b/res/drawable/drag_handle_indicator_no_shadow.xml index 341e60cda..825f13f60 100644 --- a/res/drawable/drag_handle_indicator_no_shadow.xml +++ b/res/drawable/drag_handle_indicator_no_shadow.xml @@ -14,16 +14,8 @@ limitations under the License. --> -<vector xmlns:android="http://schemas.android.com/apk/res/android" - android:width="@dimen/vertical_drag_handle_width" - android:height="@dimen/vertical_drag_handle_height" - android:viewportWidth="18.0" - android:viewportHeight="6.0" - android:tint="?attr/workspaceTextColor" > - - <path - android:pathData="M17,6c-0.15,0-0.3-0.03-0.45-0.11L9,2.12L1.45,5.89c-0.5,0.25-1.09, - 0.05-1.34-0.45S0.06,4.35,0.55,4.11l8-4c0.28-0.14,0.61-0.14,0.89,0l8,4c0.49,0.25,0.69, - 0.85,0.45,1.34C17.72,5.8,17.37,6,17,6z" - android:fillColor="@android:color/white" /> -</vector> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <solid android:color="#00000000" /> + <size android:height="0.0dp" /> +</shape> diff --git a/res/drawable/ic_drag_handle.xml b/res/drawable/ic_drag_handle.xml index 0181ff15d..4eeba0306 100644 --- a/res/drawable/ic_drag_handle.xml +++ b/res/drawable/ic_drag_handle.xml @@ -14,14 +14,8 @@ limitations under the License. --> -<vector xmlns:android="http://schemas.android.com/apk/res/android" - android:width="@dimen/deep_shortcut_drag_handle_size" - android:height="@dimen/deep_shortcut_drag_handle_size" - android:viewportWidth="24.0" - android:viewportHeight="24.0" - android:tint="?android:attr/textColorHint" > - - <path - android:pathData="M20,9H4v2h16V9z M4,15h16v-2H4V15z" - android:fillColor="@android:color/white" /> -</vector>
\ No newline at end of file +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <solid android:color="#00000000" /> + <size android:height="0.0dp" /> +</shape> |