diff options
author | Milan Crha <mcrha@redhat.com> | 2014-01-28 02:19:39 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-01-28 02:19:39 +0800 |
commit | f30598b6146b2b6922b00052872a8c55f152ca66 (patch) | |
tree | dd0e2dda9320b8066cae133cc125858137bddc8d /mail | |
parent | fd692d0b1d16f6e083add4dd8fe8a3019948e4a2 (diff) | |
download | gsoc2013-evolution-f30598b6146b2b6922b00052872a8c55f152ca66.tar gsoc2013-evolution-f30598b6146b2b6922b00052872a8c55f152ca66.tar.gz gsoc2013-evolution-f30598b6146b2b6922b00052872a8c55f152ca66.tar.bz2 gsoc2013-evolution-f30598b6146b2b6922b00052872a8c55f152ca66.tar.lz gsoc2013-evolution-f30598b6146b2b6922b00052872a8c55f152ca66.tar.xz gsoc2013-evolution-f30598b6146b2b6922b00052872a8c55f152ca66.tar.zst gsoc2013-evolution-f30598b6146b2b6922b00052872a8c55f152ca66.zip |
Forward/Reply styles in Preferences opened empty
This is a regression after commit b5023d3, an edit of the mail-config.ui
file accidentally dropped ID-s for a GtkComboBoxText items, thus
the g_settings_bind() could not match any item in the combo box.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mail-config.ui | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mail/mail-config.ui b/mail/mail-config.ui index 97c836db73..0611b9093d 100644 --- a/mail/mail-config.ui +++ b/mail/mail-config.ui @@ -483,10 +483,10 @@ <property name="visible">True</property> <property name="can_focus">False</property> <items> - <item translatable="yes" context="ReplyForward">Attachment</item> - <item translatable="yes" context="ReplyForward">Inline (Outlook style)</item> - <item translatable="yes" context="ReplyForward">Quoted</item> - <item translatable="yes" context="ReplyForward">Do Not Quote</item> + <item translatable="yes" context="ReplyForward" id="attach">Attachment</item> + <item translatable="yes" context="ReplyForward" id="outlook">Inline (Outlook style)</item> + <item translatable="yes" context="ReplyForward" id="quoted">Quoted</item> + <item translatable="yes" context="ReplyForward" id="do-not-quote">Do Not Quote</item> </items> </object> </child> @@ -507,9 +507,9 @@ <property name="visible">True</property> <property name="can_focus">False</property> <items> - <item translatable="yes" context="ReplyForward">Attachment</item> - <item translatable="yes" context="ReplyForward">Inline</item> - <item translatable="yes" context="ReplyForward">Quoted</item> + <item translatable="yes" context="ReplyForward" id="attached">Attachment</item> + <item translatable="yes" context="ReplyForward" id="inline">Inline</item> + <item translatable="yes" context="ReplyForward" id="quoted">Quoted</item> </items> </object> </child> |