[2/2] OmniControl: add setting to force small ls lock

Change-Id: Ia59ac8c0a8148545a3ee7ff62157e0eed710ffb5
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 37c15a9..a1a6494 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -60,6 +60,8 @@
     <string name="lockscreen_weather_title">Show weather condition</string>
     <string name="lockscreen_weather_summary">Show current weather condition and temperature</string>
     <string name="lockscreen_weather_enabled_info">Requires enablement of weather service</string>
+    <string name="lockscreen_small_clock_title">Always show small clock</string>
+    <string name="lockscreen_small_clock_summary">Do not change clock style based on notifications</string>
 
     <string name="system_update_title">System updates</string>
     <string name="system_update_summary">Download and install OmniROM updates</string>
diff --git a/app/src/main/res/xml/lockscreen_settings_preferences.xml b/app/src/main/res/xml/lockscreen_settings_preferences.xml
index 7061a2d..e511982 100644
--- a/app/src/main/res/xml/lockscreen_settings_preferences.xml
+++ b/app/src/main/res/xml/lockscreen_settings_preferences.xml
@@ -10,6 +10,12 @@
 
     <org.omnirom.omnilib.preference.SystemSettingSwitchPreference
         android:defaultValue="false"
+        android:key="lockscreen_small_clock"
+        android:summary="@string/lockscreen_small_clock_summary"
+        android:title="@string/lockscreen_small_clock_title" />
+
+    <org.omnirom.omnilib.preference.SystemSettingSwitchPreference
+        android:defaultValue="false"
         android:key="lockscreen_weather_enabled"
         android:summary="@string/lockscreen_weather_summary"
         android:title="@string/lockscreen_weather_title" />