A fork of Simple Time Tracker with WearOS support. (Now integrated upstream)
0

Configure Feed

Select the types of activity you want to include in your feed.

revert archive icon change

razeeman (Feb 27, 2024, 10:01 PM +0300) b55fdfb6 17f15417

+13 -3
+1
core/build.gradle.kts
··· 18 18 dependencies { 19 19 api(project(":domain")) 20 20 api(project(":navigation")) 21 + api(project(":resources")) 21 22 api(project(":feature_base_adapter")) 22 23 api(project(":feature_views")) 23 24
+9
core/src/main/res/drawable/archive.xml
··· 1 + <vector xmlns:android="http://schemas.android.com/apk/res/android" 2 + android:width="24dp" 3 + android:height="24dp" 4 + android:viewportWidth="24" 5 + android:viewportHeight="24"> 6 + <path 7 + android:fillColor="#FF000000" 8 + android:pathData="M20.54,5.23l-1.39,-1.68C18.88,3.21 18.47,3 18,3H6c-0.47,0 -0.88,0.21 -1.16,0.55L3.46,5.23C3.17,5.57 3,6.02 3,6.5V19c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2V6.5c0,-0.48 -0.17,-0.93 -0.46,-1.27zM12,17.5L6.5,12H10v-2h4v2h3.5L12,17.5zM5.12,5l0.81,-1h12l0.94,1H5.12z"/> 9 + </vector>
+1 -1
core/src/main/res/drawable/delete.xml
··· 5 5 android:viewportHeight="24.0"> 6 6 <path 7 7 android:fillColor="#FF000000" 8 - android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7H6v12zM19,4h-3.5l-1,-1h-5l-1,1H5v2h14V4z"/> 8 + android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2L18,7L6,7v12zM8.46,11.88l1.41,-1.41L12,12.59l2.12,-2.12 1.41,1.41L13.41,14l2.12,2.12 -1.41,1.41L12,15.41l-2.12,2.12 -1.41,-1.41L10.59,14l-2.13,-2.12zM15.5,4l-1,-1h-5l-1,1L5,4v2h14L19,4z"/> 9 9 </vector>
+1 -1
features/feature_change_record_tag/src/main/res/layout/change_record_tag_fragment.xml
··· 15 15 android:background="?selectableItemBackgroundBorderless" 16 16 android:clickable="true" 17 17 android:focusable="true" 18 - android:src="@drawable/delete" 18 + android:src="@drawable/archive" 19 19 android:tint="?appInactiveColor" 20 20 android:visibility="gone" 21 21 app:layout_constraintEnd_toEndOf="parent"
+1 -1
features/feature_change_record_type/src/main/res/layout/change_record_type_fragment.xml
··· 27 27 android:background="?selectableItemBackgroundBorderless" 28 28 android:clickable="true" 29 29 android:focusable="true" 30 - android:src="@drawable/delete" 30 + android:src="@drawable/archive" 31 31 android:tint="?appInactiveColor" 32 32 android:visibility="gone" 33 33 app:layout_constraintEnd_toEndOf="parent"