mirror of
https://github.com/moparisthebest/Yaaic
synced 2025-02-16 23:10:11 -05:00
Preferences: Option to automatically reconnect on disconnect
This commit is contained in:
parent
e09b601d0c
commit
22375c65b5
@ -11,4 +11,7 @@
|
||||
|
||||
<string name="key_24h_format">24h_format</string>
|
||||
<string name="default_24h_format">true</string>
|
||||
|
||||
<string name="key_reconnect">reconnect</string>
|
||||
<string name="default_reconnect">false</string>
|
||||
</resources>
|
@ -21,6 +21,14 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
<PreferenceScreen
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<PreferenceCategory
|
||||
android:title="Connection">
|
||||
<CheckBoxPreference
|
||||
android:title="Reconnect"
|
||||
android:summary="Automatically reconnect on disconnect"
|
||||
android:key="@string/key_reconnect"
|
||||
android:defaultValue="@string/default_reconnect" />
|
||||
</PreferenceCategory>
|
||||
<PreferenceCategory
|
||||
android:title="Chat">
|
||||
<CheckBoxPreference
|
||||
|
Loading…
Reference in New Issue
Block a user