diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-02-21 14:29:10 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-02-21 14:29:10 +0000 |
commit | 9fd57a95534b45884c80f74de92bd4be12b5f39f (patch) | |
tree | b786626185cc735b062bb82280d60d9592239655 /Rpmdrake/edit_urpm_sources.pm | |
parent | 41b0e980951a7f160f685fa124af6471da874c4c (diff) | |
download | rpmdrake-9fd57a95534b45884c80f74de92bd4be12b5f39f.tar rpmdrake-9fd57a95534b45884c80f74de92bd4be12b5f39f.tar.gz rpmdrake-9fd57a95534b45884c80f74de92bd4be12b5f39f.tar.bz2 rpmdrake-9fd57a95534b45884c80f74de92bd4be12b5f39f.tar.xz rpmdrake-9fd57a95534b45884c80f74de92bd4be12b5f39f.zip |
(mainwindow) reorder 'File' menu ('Quit' is now last)
Diffstat (limited to 'Rpmdrake/edit_urpm_sources.pm')
-rw-r--r-- | Rpmdrake/edit_urpm_sources.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Rpmdrake/edit_urpm_sources.pm b/Rpmdrake/edit_urpm_sources.pm index bef41d0d..4504dfce 100644 --- a/Rpmdrake/edit_urpm_sources.pm +++ b/Rpmdrake/edit_urpm_sources.pm @@ -953,8 +953,8 @@ sub mainwindow() { my ($menu, $_factory) = create_factory_menu( $mainw->{real_window}, [ N("/_File"), undef, undef, undef, '<Branch>' ], - [ N("/_File") . N("/_Quit"), N("<control>Q"), sub { Gtk2->main_quit }, undef, '<Item>', ], [ N("/_File") . N("/_Update"), N("<control>U"), sub { update_callback() and $reread_media->() }, undef, '<Item>', ], + [ N("/_File") . N("/_Quit"), N("<control>Q"), sub { Gtk2->main_quit }, undef, '<Item>', ], [ N("/_Options"), undef, undef, undef, '<Branch>' ], [ N("/_Options") . N("/_Global options"), N("<control>G"), \&options_callback, undef, '<Item>' ], [ N("/_Options") . N("/_Add a custom medium"), N("<control>A"), sub { add_callback() and $reread_media->() }, undef, '<Item>' ], |