Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 56b33814 authored by Mark Harman's avatar Mark Harman
Browse files

Use rounded square for recording video.

parent 446d6d0a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -49,6 +49,7 @@
<pre>
Version 1.55 (Work in progress)

UPDATED Shutter button now changes to a red square when recording video.
UPDATED Removed -/+ controls for zoom and exposure compensation (these "zoom controls" are now
        deprecated in Android).

+16 −10
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape
            android:shape="oval">
    <size android:width="48dp" android:height="48dp"
        />
            <size android:width="48dp" android:height="48dp"/>
            <solid android:color="#FFFFFF"/>
        </shape>
    </item>
    <item android:left="16dp" android:top="16dp" android:right="16dp" android:bottom="16dp">
        <shape
            android:shape="rectangle">
            <solid android:color="@color/shutter_icon_video_recording"/>
    <stroke
        android:width="16dp"
        android:color="#FFFFFF"
        />
            <corners android:radius="3dp"/>
        </shape>
    </item>
</layer-list>