summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@gnome.org>2004-02-23 22:07:55 +0000
committerJonathan Blandford <jrb@src.gnome.org>2004-02-23 22:07:55 +0000
commit6b5ba8d25d0afcd3c444342c7339e5411edc477f (patch)
tree576e67f0af3182d2520c073451504bd07bdbb83e
parentc3945e7c31e67a55c5b4a55c1b3c9de1fd87a68f (diff)
downloadgdk-pixbuf-6b5ba8d25d0afcd3c444342c7339e5411edc477f.tar.gz
Seth was confused by keybindings. They should be Alt, not Ctl. Also,
Mon Feb 23 16:52:12 2004 Jonathan Blandford <jrb@gnome.org> * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_class_init): Seth was confused by keybindings. They should be Alt, not Ctl. Also, A-Home should go home, not up.
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLog.pre-2-107
-rw-r--r--ChangeLog.pre-2-47
-rw-r--r--ChangeLog.pre-2-67
-rw-r--r--ChangeLog.pre-2-87
-rw-r--r--gtk/gtkfilechooserdefault.c12
6 files changed, 41 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 8769b845a..77cc4393a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Mon Feb 23 16:52:12 2004 Jonathan Blandford <jrb@gnome.org>
+
+ * gtk/gtkfilechooserdefault.c
+ (gtk_file_chooser_default_class_init): Seth was confused by
+ keybindings. They should be Alt, not Ctl. Also, A-Home should go
+ home, not up.
+
Mon Feb 23 15:23:23 2004 Jonathan Blandford <jrb@gnome.org>
* gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 8769b845a..77cc4393a 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,10 @@
+Mon Feb 23 16:52:12 2004 Jonathan Blandford <jrb@gnome.org>
+
+ * gtk/gtkfilechooserdefault.c
+ (gtk_file_chooser_default_class_init): Seth was confused by
+ keybindings. They should be Alt, not Ctl. Also, A-Home should go
+ home, not up.
+
Mon Feb 23 15:23:23 2004 Jonathan Blandford <jrb@gnome.org>
* gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 8769b845a..77cc4393a 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,10 @@
+Mon Feb 23 16:52:12 2004 Jonathan Blandford <jrb@gnome.org>
+
+ * gtk/gtkfilechooserdefault.c
+ (gtk_file_chooser_default_class_init): Seth was confused by
+ keybindings. They should be Alt, not Ctl. Also, A-Home should go
+ home, not up.
+
Mon Feb 23 15:23:23 2004 Jonathan Blandford <jrb@gnome.org>
* gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 8769b845a..77cc4393a 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,10 @@
+Mon Feb 23 16:52:12 2004 Jonathan Blandford <jrb@gnome.org>
+
+ * gtk/gtkfilechooserdefault.c
+ (gtk_file_chooser_default_class_init): Seth was confused by
+ keybindings. They should be Alt, not Ctl. Also, A-Home should go
+ home, not up.
+
Mon Feb 23 15:23:23 2004 Jonathan Blandford <jrb@gnome.org>
* gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 8769b845a..77cc4393a 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,10 @@
+Mon Feb 23 16:52:12 2004 Jonathan Blandford <jrb@gnome.org>
+
+ * gtk/gtkfilechooserdefault.c
+ (gtk_file_chooser_default_class_init): Seth was confused by
+ keybindings. They should be Alt, not Ctl. Also, A-Home should go
+ home, not up.
+
Mon Feb 23 15:23:23 2004 Jonathan Blandford <jrb@gnome.org>
* gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit
diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c
index c49dba188..73c1beb74 100644
--- a/gtk/gtkfilechooserdefault.c
+++ b/gtk/gtkfilechooserdefault.c
@@ -401,21 +401,21 @@ gtk_file_chooser_default_class_init (GtkFileChooserDefaultClass *class)
0);
gtk_binding_entry_add_signal (binding_set,
- GDK_Up, GDK_CONTROL_MASK,
+ GDK_Up, GDK_MOD1_MASK,
"up-folder",
0);
gtk_binding_entry_add_signal (binding_set,
- GDK_KP_Up, GDK_CONTROL_MASK,
+ GDK_KP_Up, GDK_MOD1_MASK,
"up-folder",
0);
gtk_binding_entry_add_signal (binding_set,
- GDK_Home, GDK_CONTROL_MASK,
- "up-folder",
+ GDK_Home, GDK_MOD1_MASK,
+ "home-folder",
0);
gtk_binding_entry_add_signal (binding_set,
- GDK_KP_Home, GDK_CONTROL_MASK,
- "up-folder",
+ GDK_KP_Home, GDK_MOD1_MASK,
+ "home-folder",
0);
_gtk_file_chooser_install_properties (gobject_class);