diff options
author | Alex Larsson <alexl@redhat.com> | 2002-04-30 22:12:33 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2002-04-30 22:12:33 +0000 |
commit | bc063520edae55df95c84d033ef697119815b4fc (patch) | |
tree | 971446ef162ec6db4f145b7a19fd1182fdc5ac3f /libnautilus-private/nautilus-icon-container.c | |
parent | 6a3c58430fc000950171eccfb1964c7c909105a2 (diff) | |
download | nautilus-bc063520edae55df95c84d033ef697119815b4fc.tar.gz |
Removed ellipsis from items that are meant brings up dialog and nothing
2002-04-30 Alex Larsson <alexl@redhat.com>
* src/nautilus-shell-ui.xml:
Removed ellipsis from items that are meant brings up dialog and
nothing more. IE: About, Preferences and Edit Bookmarks.
Change Back/Forward/Up keyboard shortcuts to be Alt-<cursor-key>
* libnautilus-private/nautilus-icon-container.c (key_press_event):
Don't eat alt-down key events.
* src/nautilus-preferences-dialog.c:
Disable news preferences.
* src/file-manager/nautilus-directory-view-ui.xml:
Use Alt-down as alternative open.
2002-04-29 David Bordoley <bordoley@msu.edu>
* src/nautilus-shell-ui.xml:
Changed tooltip for up arrow
* file-manager/fm-directory-view.c
* file-manager/nautilus-directory-view-ui.xml:
Changed "Show Properties" to "Properties"
* src/file-manager/nautilus-desktop-icon-view-ui.xml:
* src/file-manager/nautilus-directory-view-ui.xml:
Change "Reset Background" to "Use Default Background".
Diffstat (limited to 'libnautilus-private/nautilus-icon-container.c')
-rw-r--r-- | libnautilus-private/nautilus-icon-container.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libnautilus-private/nautilus-icon-container.c b/libnautilus-private/nautilus-icon-container.c index 72cfd3602..5ca879a60 100644 --- a/libnautilus-private/nautilus-icon-container.c +++ b/libnautilus-private/nautilus-icon-container.c @@ -3015,8 +3015,11 @@ key_press_event (GtkWidget *widget, handled = TRUE; break; case GDK_Down: - keyboard_down (container, event); - handled = TRUE; + /* Don't eat Alt-Down, as that is used for Open */ + if ((event->state & GDK_MOD1_MASK) == 0) { + keyboard_down (container, event); + handled = TRUE; + } break; case GDK_space: keyboard_space (container, event); |