Content menu missing labels in composer: Closes #7322

This commit is contained in:
Brendan Long 2013-08-12 16:30:17 -07:00 committed by Jim Nelson
parent 0df2c1fa7c
commit 624a7171be
2 changed files with 21 additions and 5 deletions

1
THANKS
View file

@ -16,6 +16,7 @@ Jens Georg <mail@jensge.org>
Michael George <mdgeorge@cs.cornell.edu> Michael George <mdgeorge@cs.cornell.edu>
Sven Hagemann <sven@rednose.nl> Sven Hagemann <sven@rednose.nl>
Mathias Hasselmann <mathias@openismus.com> Mathias Hasselmann <mathias@openismus.com>
Brendan Long <self@brendanlong.com>
Timo Kluck <tkluck@infty.nl> Timo Kluck <tkluck@infty.nl>
Avi Levy <avi.w.levy@gmail.com> Avi Levy <avi.w.levy@gmail.com>
Kai Mast <mail@kai-mast.de> Kai Mast <mail@kai-mast.de>

View file

@ -3,23 +3,38 @@
<!-- interface-requires gtk+ 3.0 --> <!-- interface-requires gtk+ 3.0 -->
<object class="GtkActionGroup" id="compose actions"> <object class="GtkActionGroup" id="compose actions">
<child> <child>
<object class="GtkAction" id="undo"/> <object class="GtkAction" id="undo">
<property name="label" translatable="yes">Undo</property>
<property name="icon-name">undo</property>
</object>
<accelerator key="z" modifiers="GDK_CONTROL_MASK"/> <accelerator key="z" modifiers="GDK_CONTROL_MASK"/>
</child> </child>
<child> <child>
<object class="GtkAction" id="redo"/> <object class="GtkAction" id="redo">
<property name="label" translatable="yes">Redo</property>
<property name="icon-name">redo</property>
</object>
<accelerator key="z" modifiers="GDK_SHIFT_MASK | GDK_CONTROL_MASK"/> <accelerator key="z" modifiers="GDK_SHIFT_MASK | GDK_CONTROL_MASK"/>
</child> </child>
<child> <child>
<object class="GtkAction" id="cut"/> <object class="GtkAction" id="cut">
<property name="label" translatable="yes">Cut</property>
<property name="icon-name">edit-cut</property>
</object>
<accelerator key="x" modifiers="GDK_CONTROL_MASK"/> <accelerator key="x" modifiers="GDK_CONTROL_MASK"/>
</child> </child>
<child> <child>
<object class="GtkAction" id="copy"/> <object class="GtkAction" id="copy">
<property name="label" translatable="yes">Copy</property>
<property name="icon-name">edit-copy</property>
</object>
<accelerator key="c" modifiers="GDK_CONTROL_MASK"/> <accelerator key="c" modifiers="GDK_CONTROL_MASK"/>
</child> </child>
<child> <child>
<object class="GtkAction" id="paste"/> <object class="GtkAction" id="paste">
<property name="label" translatable="yes">Paste</property>
<property name="icon-name">edit-paste</property>
</object>
<accelerator key="v" modifiers="GDK_CONTROL_MASK"/> <accelerator key="v" modifiers="GDK_CONTROL_MASK"/>
</child> </child>
<child> <child>