Mercurial > hg > octave-nkf
changeset 18449:5936afdc75e1 gui-release
Add ellipses to file dock context menu items which open windows.
* files-dock-widget.cc (files_dock_widget::contextmenu_requested):
Add ellipses to items which will open another window.
author | Rik <rik@octave.org> |
---|---|
date | Fri, 24 Jan 2014 17:17:00 -0800 |
parents | a2294cc6e027 |
children | 2ea741d22554 |
files | libgui/src/files-dock-widget.cc |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/libgui/src/files-dock-widget.cc +++ b/libgui/src/files-dock-widget.cc @@ -506,23 +506,23 @@ tr ("Set Current Directory"), this, SLOT (contextmenu_setcurrentdir (bool))); menu.addSeparator (); - menu.addAction (tr ("Find Files ..."), this, + menu.addAction (tr ("Find Files..."), this, SLOT (contextmenu_findfiles (bool))); } menu.addSeparator (); - menu.addAction (tr ("Rename"), this, SLOT (contextmenu_rename (bool))); - menu.addAction (QIcon (":/actions/icons/editdelete.png"), tr ("Delete"), - this, SLOT (contextmenu_delete (bool))); + menu.addAction (tr ("Rename..."), this, SLOT (contextmenu_rename (bool))); + menu.addAction (QIcon (":/actions/icons/editdelete.png"), + tr ("Delete..."), this, SLOT (contextmenu_delete (bool))); if (info.isDir ()) { menu.addSeparator (); menu.addAction (QIcon (":/actions/icons/filenew.png"), - tr ("New File"), + tr ("New File..."), this, SLOT (contextmenu_newfile (bool))); menu.addAction (QIcon (":/actions/icons/folder_new.png"), - tr ("New Directory"), + tr ("New Directory..."), this, SLOT (contextmenu_newdir (bool))); }