Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Fix shift icons (#1192)
Browse files Browse the repository at this point in the history
  • Loading branch information
MortimerGoro authored May 10, 2019
1 parent a1e8c7d commit 51e55d9
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 13 deletions.
30 changes: 21 additions & 9 deletions app/src/main/res/drawable/ic_icon_keyboard_caps.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:width="30dp"
android:height="30dp"
android:viewportWidth="200"
android:viewportHeight="200">
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="30dp"
android:height="30dp"
android:viewportWidth="200"
android:viewportHeight="200">

<path
android:fillColor="@color/fog"
android:pathData="M64.74 174.76a6.88 6.88 0 0 0 6.88 6.88h56.76a6.88 6.88 0 0 0 6.88-6.88v-2.24a6.88 6.88 0 0 0-6.88-6.88H71.62a6.88 6.88 0 0 0-6.88 6.88zM167.65 99.47L105.39 21a6.89 6.89 0 0 0-10.78 0L32.35 99.47a6.88 6.88 0 0 0 0 8.52 7.21 7.21 0 0 0 5.73 2.63h26.41a.25.25 0 0 1 .25.25v31.89a6.88 6.88 0 0 0 6.88 6.88h56.76a6.88 6.88 0 0 0 6.88-6.88v-31.89a.25.25 0 0 1 .25-.25H162a7.19 7.19 0 0 0 5.73-2.63 6.88 6.88 0 0 0-.08-8.52z"/>
</vector>
android:fillColor="@color/fog"
android:strokeColor="@color/fog"
android:strokeWidth="5.67"
android:strokeLineJoin="round"
android:strokeLineCap="round"
android:pathData="M 81.6 141.4 H 118.4 V 148.5 H 81.6 V 141.4 Z" />
<path
android:fillColor="@color/fog"
android:strokeColor="@color/fog"
android:strokeWidth="5.67"
android:strokeLineJoin="round"
android:strokeLineCap="round"
android:pathData="M 81.6 131.6 L 118.4 131.6 L 118.4 102.4 L 140.4 102.4 L 100 51.5 L 59.7 102.4 L 81.6 102.4 Z" />
</vector>
5 changes: 4 additions & 1 deletion app/src/main/res/drawable/ic_icon_keyboard_shift_off.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<vector android:height="30dp" android:viewportHeight="200"
android:viewportWidth="200" android:width="30dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@color/asphalt" android:pathData="M167.65 99.47L105.39 21a6.89 6.89 0 0 0-10.78 0L32.35 99.47a6.87 6.87 0 0 0 5.38 11.15h27v64.14a6.88 6.88 0 0 0 6.88 6.88h56.76a6.88 6.88 0 0 0 6.88-6.88v-64.14h27a6.87 6.87 0 0 0 5.38-11.15zm-39.27-2.6a6.88 6.88 0 0 0-6.87 6.88v64.14h-43v-64.14a6.88 6.88 0 0 0-6.87-6.88H52l48-60.57 48 60.57z"/>
<path android:fillColor="@color/asphalt" android:fillType="evenOdd"
android:pathData="M140.35,102.43l-40.35,-50.88l-40.35,50.88l21.96,0l0,46.02l36.78,0l0,-46.02l21.96,0z"
android:strokeColor="@color/fog" android:strokeLineCap="round"
android:strokeLineJoin="round" android:strokeWidth="10"/>
</vector>
9 changes: 6 additions & 3 deletions app/src/main/res/drawable/ic_icon_keyboard_shift_on.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<vector android:height="30dp" android:viewportHeight="200"
android:viewportWidth="200" android:width="30dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@color/fog" android:pathData="M167.65 99.47L105.39 21a6.89 6.89 0 0 0-10.78 0L32.35 99.47a6.87 6.87 0 0 0 5.38 11.15h27v64.14a6.88 6.88 0 0 0 6.88 6.88h56.76a6.88 6.88 0 0 0 6.88-6.88v-64.14h27a6.87 6.87 0 0 0 5.38-11.15z"/>
<vector android:height="24dp" android:viewportHeight="200"
android:viewportWidth="200" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@color/fog" android:fillType="evenOdd"
android:pathData="M140.35,102.43l-40.35,-50.88l-40.35,50.88l21.96,0l0,46.02l36.78,0l0,-46.02l21.96,0z"
android:strokeColor="@color/fog" android:strokeLineCap="round"
android:strokeLineJoin="round" android:strokeWidth="10"/>
</vector>

0 comments on commit 51e55d9

Please sign in to comment.