Skip to content

Commit

Permalink
Replace the pencil icon with check for logging (#59)
Browse files Browse the repository at this point in the history
This implements one suggestion from @skmlcd and partially
addresses #44.
  • Loading branch information
annawoodard authored and mazurio committed Jan 7, 2017
1 parent e93141a commit a0af819
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions app/src/main/res/drawable/action_done_white.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#ffffff"
android:pathData="M9,16.2L4.8,12l-1.4,1.4L9,19 21,7l-1.4,-1.4L9,16.2z"/>
</vector>
2 changes: 1 addition & 1 deletion app/src/main/res/layout-port/view_timer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
app:srcCompat="@drawable/action_log"
app:srcCompat="@drawable/action_done_white"
android:layout_centerInParent="true"
app:borderWidth="0dp"
app:elevation="@dimen/view_action_elevation"/>
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/view_timer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
app:srcCompat="@drawable/action_log"
app:srcCompat="@drawable/action_done_white"
android:layout_centerInParent="true"
app:borderWidth="0dp"
app:elevation="@dimen/view_action_elevation"/>
Expand Down

0 comments on commit a0af819

Please sign in to comment.