mobile/android/base/resources/xml/preferences_display.xml

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
     3    - License, v. 2.0. If a copy of the MPL was not distributed with this
     4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
     7                   xmlns:gecko="http://schemas.android.com/apk/res-auto"
     8                   android:title="@string/pref_category_display"
     9                   android:enabled="false">
    11     <org.mozilla.gecko.preferences.FontSizePreference
    12                     android:key="font.size.inflation.minTwips"
    13                     android:title="@string/pref_text_size"
    14                     android:positiveButtonText="@string/pref_font_size_set"
    15                     android:negativeButtonText="@string/button_cancel"
    16                     android:persistent="false" />
    18     <ListPreference android:key="browser.chrome.titlebarMode"
    19                     android:title="@string/pref_titlebar_mode"
    20                     android:entries="@array/pref_titlebar_mode_entries"
    21                     android:entryValues="@array/pref_titlebar_mode_values"
    22                     android:persistent="false" />
    24     <CheckBoxPreference android:key="browser.chrome.dynamictoolbar"
    25                         android:title="@string/pref_scroll_title_bar" />
    27     <PreferenceCategory android:title="@string/pref_category_advanced">
    29         <CheckBoxPreference
    30                         android:key="browser.zoom.reflowOnZoom"
    31                         android:title="@string/pref_reflow_on_zoom"
    32                         android:defaultValue="false"
    33                         android:persistent="false" />
    35         <ListPreference android:key="browser.menu.showCharacterEncoding"
    36                         android:title="@string/pref_char_encoding"
    37                         android:entries="@array/pref_char_encoding_entries"
    38                         android:entryValues="@array/pref_char_encoding_values"
    39                         android:persistent="false" />
    41         <ListPreference android:key="plugin.enable"
    42                         android:title="@string/pref_plugins"
    43                         android:entries="@array/pref_plugins_entries"
    44                         android:entryValues="@array/pref_plugins_values"
    45                         android:persistent="false" />
    47     </PreferenceCategory>
    49 </PreferenceScreen>

mercurial