diff options
author | Diego Escalante Urrelo <descalante@igalia.com> | 2010-12-08 02:51:11 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-12-08 23:56:12 +0800 |
commit | 4015281028a036ee859360bb7feb3a6aeb8f56cb (patch) | |
tree | f9d8b7f71a4229d8b44d1180698e8f892635e880 /data/org.gnome.epiphany.gschema.xml.in | |
parent | bc03f56a7483e499274cf1632975dfbb7e09e9ec (diff) | |
download | gsoc2013-epiphany-4015281028a036ee859360bb7feb3a6aeb8f56cb.tar.gz gsoc2013-epiphany-4015281028a036ee859360bb7feb3a6aeb8f56cb.tar.zst gsoc2013-epiphany-4015281028a036ee859360bb7feb3a6aeb8f56cb.zip |
prefs-dialog: new custom font selection UI
Allow users to set custom sans, serif and monospace fonts if they don't want
the defaults, which are the desktop wide settings in the
org.gnome.desktop.interface schema.
Bug #636761
Diffstat (limited to 'data/org.gnome.epiphany.gschema.xml.in')
-rw-r--r-- | data/org.gnome.epiphany.gschema.xml.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/data/org.gnome.epiphany.gschema.xml.in b/data/org.gnome.epiphany.gschema.xml.in index 587a5ebcb..eb7a1fe2d 100644 --- a/data/org.gnome.epiphany.gschema.xml.in +++ b/data/org.gnome.epiphany.gschema.xml.in @@ -92,6 +92,26 @@ <default>7</default> <summary>Minimum font size</summary> </key> + <key type="b" name="use-gnome-fonts"> + <default>true</default> + <summary>Use GNOME fonts</summary> + <description>Use GNOME desktop wide font configuration.</description> + </key> + <key type="s" name="sans-serif-font"> + <default>'Sans 10'</default> + <summary>Custom sans-serif font</summary> + <description>A value to be used to override sans-serif desktop font when use-gnome-fonts is set.</description> + </key> + <key type="s" name="serif-font"> + <default>'Serif 10'</default> + <summary>Custom serif font</summary> + <description>A value to be used to override serif desktop font when use-gnome-fonts is set.</description> + </key> + <key type="s" name="monospace-font"> + <default>'Monospace 10'</default> + <summary>Custom monospace font</summary> + <description>A value to be used to override monospace desktop font when use-gnome-fonts is set.</description> + </key> <key type="b" name="use-own-colors"> <default>false</default> <summary>Use own colors</summary> |