aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-03-11 22:30:21 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-03-17 20:49:12 +0800
commitc5bc18cec08324f832f4d91dce3579c7332d9a0b (patch)
treebf8113dfbc13a6becda39efe145789b5a0276086 /data
parent69cf1ede0d8dbeee486fd3693fba42f2ccea8bf6 (diff)
downloadgsoc2013-evolution-c5bc18cec08324f832f4d91dce3579c7332d9a0b.tar
gsoc2013-evolution-c5bc18cec08324f832f4d91dce3579c7332d9a0b.tar.gz
gsoc2013-evolution-c5bc18cec08324f832f4d91dce3579c7332d9a0b.tar.bz2
gsoc2013-evolution-c5bc18cec08324f832f4d91dce3579c7332d9a0b.tar.lz
gsoc2013-evolution-c5bc18cec08324f832f4d91dce3579c7332d9a0b.tar.xz
gsoc2013-evolution-c5bc18cec08324f832f4d91dce3579c7332d9a0b.tar.zst
gsoc2013-evolution-c5bc18cec08324f832f4d91dce3579c7332d9a0b.zip
Add "side-bar-ellipsize-mode" setting.
Replaces the "no-folder-dots" setting, which has been removed since it was not exposed in Evolution's Preferences interface. The new setting uses an enum type compatible with PangoEllipsizeMode.
Diffstat (limited to 'data')
-rw-r--r--data/org.gnome.evolution.mail.gschema.xml.in17
1 files changed, 12 insertions, 5 deletions
diff --git a/data/org.gnome.evolution.mail.gschema.xml.in b/data/org.gnome.evolution.mail.gschema.xml.in
index 59914ce09f..1fc0493987 100644
--- a/data/org.gnome.evolution.mail.gschema.xml.in
+++ b/data/org.gnome.evolution.mail.gschema.xml.in
@@ -22,6 +22,14 @@
<value nick='always' value='2'/>
</enum>
+ <!-- Keep this synchronized with PangoEllipsizeMode. -->
+ <enum id="org.gnome.evolution.mail.EllipsizeMode">
+ <value nick='none' value='0'/>
+ <value nick='start' value='1'/>
+ <value nick='middle' value='2'/>
+ <value nick='end' value='3'/>
+ </enum>
+
<schema gettext-domain="evolution" id="org.gnome.evolution.mail" path="/org/gnome/evolution/mail/">
<key name="prompt-check-if-default-mailer" type="b">
<default>true</default>
@@ -168,16 +176,15 @@
<_summary>Show image animations</_summary>
<_description>Enable animated images in HTML mail. Many users find animated images annoying and prefer to see a static image instead.</_description>
</key>
+ <key name="side-bar-ellipsize-mode" enum="org.gnome.evolution.mail.EllipsizeMode">
+ <default>'none'</default>
+ <_summary>Ellipsize mode for folder names in side bar</_summary>
+ </key>
<key name="side-bar-search" type="b">
<default>true</default>
<_summary>Enable or disable type ahead search feature</_summary>
<_description>Enable the side bar search feature to allow interactive searching of folder names.</_description>
</key>
- <key name="no-folder-dots" type="b">
- <default>false</default>
- <_summary>Disable or enable ellipsizing of folder names in side bar</_summary>
- <_description>Whether disable ellipsizing feature of folder names in side bar.</_description>
- </key>
<key name="magic-spacebar" type="b">
<default>true</default>
<_summary>Enable or disable magic space bar</_summary>