aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2006-07-24 04:30:58 +0800
committerChristian Persch <chpe@src.gnome.org>2006-07-24 04:30:58 +0800
commit4e2150ac2c00a0a2a2741a67b356003052426feb (patch)
tree305a116ba673553ab7c0ce951df8a4e32354ea39 /src
parentff3e857464ce32f626e080f93ea66ce1b5c372e3 (diff)
downloadgsoc2013-epiphany-4e2150ac2c00a0a2a2741a67b356003052426feb.tar
gsoc2013-epiphany-4e2150ac2c00a0a2a2741a67b356003052426feb.tar.gz
gsoc2013-epiphany-4e2150ac2c00a0a2a2741a67b356003052426feb.tar.bz2
gsoc2013-epiphany-4e2150ac2c00a0a2a2741a67b356003052426feb.tar.lz
gsoc2013-epiphany-4e2150ac2c00a0a2a2741a67b356003052426feb.tar.xz
gsoc2013-epiphany-4e2150ac2c00a0a2a2741a67b356003052426feb.tar.zst
gsoc2013-epiphany-4e2150ac2c00a0a2a2741a67b356003052426feb.zip
Add accel. Bug #337913.
2006-07-22 Christian Persch <chpe@cvs.gnome.org> * src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmarks_export): Add accel. Bug #337913.
Diffstat (limited to 'src')
-rw-r--r--src/bookmarks/ephy-bookmarks-editor.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c
index 2c80d534f..00553bbac 100644
--- a/src/bookmarks/ephy-bookmarks-editor.c
+++ b/src/bookmarks/ephy-bookmarks-editor.c
@@ -917,9 +917,10 @@ cmd_bookmarks_export (GtkAction *action,
(GTK_FILE_CHOOSER (dialog), _("Bookmarks"));
/* Make a format selection combo & label */
- label = gtk_label_new (_("File format:"));
+ label = gtk_label_new_with_mnemonic (_("File f_ormat:"));
combo = gtk_combo_box_new_text ();
+ gtk_label_set_mnemonic_widget (GTK_LABEL (label), combo);
for (format = 0; format < G_N_ELEMENTS (export_formats); ++format)
{
@@ -933,8 +934,8 @@ cmd_bookmarks_export (GtkAction *action,
gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 0);
hbox = gtk_hbox_new (FALSE, 12);
- gtk_box_pack_end (GTK_BOX (hbox), combo, TRUE, TRUE, 0);
- gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (hbox), combo, FALSE, FALSE, 0);
gtk_widget_show_all (hbox);
gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (dialog), hbox);