mirror of
https://github.com/FossifyOrg/Clock.git
synced 2025-12-24 00:17:52 -05:00
feat: update timer reset icon (#338)
Refs: https://github.com/FossifyOrg/Clock/issues/335
This commit is contained in:
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
### Changed
|
||||
- Updated timer reset icon ([#335])
|
||||
|
||||
### Fixed
|
||||
- Fixed invisible status bar icons on the alarm screen
|
||||
|
||||
@@ -93,6 +96,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
[#206]: https://github.com/FossifyOrg/Clock/issues/206
|
||||
[#207]: https://github.com/FossifyOrg/Clock/issues/207
|
||||
[#247]: https://github.com/FossifyOrg/Clock/issues/247
|
||||
[#335]: https://github.com/FossifyOrg/Clock/issues/335
|
||||
|
||||
[Unreleased]: https://github.com/FossifyOrg/Clock/compare/1.4.0...HEAD
|
||||
[1.4.0]: https://github.com/FossifyOrg/Clock/compare/1.3.1...1.4.0
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
android:id="@+id/stopwatch_time"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="@dimen/medium_margin"
|
||||
android:autoSizeMaxTextSize="@dimen/stopwatch_text_size"
|
||||
android:autoSizeMinTextSize="@dimen/extra_big_text_size"
|
||||
android:autoSizeStepGranularity="2sp"
|
||||
@@ -18,7 +19,6 @@
|
||||
android:background="?attr/selectableItemBackground"
|
||||
android:fontFeatureSettings="tnum"
|
||||
android:gravity="center_horizontal"
|
||||
android:layout_marginBottom="@dimen/medium_margin"
|
||||
android:includeFontPadding="false"
|
||||
android:maxLines="1"
|
||||
android:padding="@dimen/small_margin"
|
||||
@@ -94,7 +94,7 @@
|
||||
android:layout_width="@dimen/stopwatch_button_size"
|
||||
android:layout_height="@dimen/stopwatch_button_size"
|
||||
android:layout_marginEnd="@dimen/section_margin"
|
||||
android:padding="@dimen/activity_margin"
|
||||
android:padding="@dimen/normal_margin"
|
||||
android:src="@drawable/ic_play_vector"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
@@ -107,7 +107,7 @@
|
||||
android:layout_height="@dimen/stopwatch_button_small_size"
|
||||
android:background="?attr/selectableItemBackgroundBorderless"
|
||||
android:padding="@dimen/normal_margin"
|
||||
android:src="@drawable/ic_reset_vector"
|
||||
android:src="@drawable/ic_restart_alt_vector"
|
||||
android:visibility="gone"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="@id/stopwatch_play_pause"
|
||||
|
||||
@@ -91,7 +91,7 @@
|
||||
android:layout_width="@dimen/stopwatch_button_size"
|
||||
android:layout_height="@dimen/stopwatch_button_size"
|
||||
android:layout_marginBottom="@dimen/big_margin"
|
||||
android:padding="@dimen/activity_margin"
|
||||
android:padding="@dimen/normal_margin"
|
||||
android:src="@drawable/ic_play_vector"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
@@ -104,7 +104,7 @@
|
||||
android:layout_height="@dimen/stopwatch_button_small_size"
|
||||
android:background="?attr/selectableItemBackgroundBorderless"
|
||||
android:padding="@dimen/normal_margin"
|
||||
android:src="@drawable/ic_reset_vector"
|
||||
android:src="@drawable/ic_restart_alt_vector"
|
||||
android:visibility="gone"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/stopwatch_play_pause"
|
||||
app:layout_constraintEnd_toStartOf="@+id/stopwatch_play_pause"
|
||||
|
||||
@@ -16,11 +16,11 @@
|
||||
android:id="@+id/timer_time"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:fontFeatureSettings="tnum"
|
||||
android:autoSizeMaxTextSize="@dimen/timer_text_size"
|
||||
android:autoSizeMinTextSize="@dimen/extra_big_text_size"
|
||||
android:autoSizeStepGranularity="2sp"
|
||||
android:autoSizeTextType="uniform"
|
||||
android:fontFeatureSettings="tnum"
|
||||
android:gravity="center_vertical"
|
||||
android:includeFontPadding="false"
|
||||
android:maxLines="1"
|
||||
@@ -54,7 +54,7 @@
|
||||
android:layout_marginHorizontal="@dimen/medium_margin"
|
||||
android:background="?attr/selectableItemBackgroundBorderless"
|
||||
android:padding="@dimen/normal_margin"
|
||||
android:src="@drawable/ic_reset_vector"
|
||||
android:src="@drawable/ic_restart_alt_vector"
|
||||
android:visibility="invisible"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@+id/timer_play_pause"
|
||||
@@ -67,7 +67,7 @@
|
||||
android:layout_width="@dimen/timer_button_size"
|
||||
android:layout_height="@dimen/timer_button_size"
|
||||
android:background="?attr/selectableItemBackgroundBorderless"
|
||||
android:padding="@dimen/activity_margin"
|
||||
android:padding="@dimen/normal_margin"
|
||||
android:src="@drawable/ic_play_vector"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/timer_drag_handle"
|
||||
|
||||
Reference in New Issue
Block a user