diff options
author | Sean Long <me@seanlong.org> | 2016-02-01 22:00:46 -0800 |
---|---|---|
committer | Sean Long <me@seanlong.org> | 2016-02-01 22:00:46 -0800 |
commit | 91574be42c735ab224bbe234dd14d1a30d9cfcd0 (patch) | |
tree | a3f9073a557307c1e6cc346d37c92bbedf23c8c4 | |
parent | Ken changed theming to be more specific for Lumina on my system so I can begi... (diff) | |
download | lumina-91574be42c735ab224bbe234dd14d1a30d9cfcd0.tar.gz lumina-91574be42c735ab224bbe234dd14d1a30d9cfcd0.tar.bz2 lumina-91574be42c735ab224bbe234dd14d1a30d9cfcd0.zip |
Generally in GUI's menu items that popup a window show '...' at the end
of the menu item. Added the a few missing '...' to the popup context
menu in lumina-fm.
-rw-r--r-- | lumina-fm/widgets/DirWidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lumina-fm/widgets/DirWidget.cpp b/lumina-fm/widgets/DirWidget.cpp index 46aa2cf3..1cf5eb41 100644 --- a/lumina-fm/widgets/DirWidget.cpp +++ b/lumina-fm/widgets/DirWidget.cpp @@ -955,8 +955,8 @@ void DirWidget::OpenContextMenu(){ contextMenu->addAction(LXDG::findIcon("run-build-file",""), tr("Open"), this, SLOT(on_tool_act_run_clicked()) ); contextMenu->addAction(LXDG::findIcon("run-build-configure",""), tr("Open With..."), this, SLOT(on_tool_act_runwith_clicked()) ); - contextMenu->addAction(LXDG::findIcon("edit-rename",""), tr("Rename"), this, SLOT(on_tool_act_rename_clicked()) )->setEnabled(canmodify); - contextMenu->addAction(LXDG::findIcon("document-encrypted",""), tr("View Checksums"), this, SLOT(fileCheckSums()) ); + contextMenu->addAction(LXDG::findIcon("edit-rename",""), tr("Rename..."), this, SLOT(on_tool_act_rename_clicked()) )->setEnabled(canmodify); + contextMenu->addAction(LXDG::findIcon("document-encrypted",""), tr("View Checksums..."), this, SLOT(fileCheckSums()) ); contextMenu->addSeparator(); } //Now add the general selection options @@ -967,7 +967,7 @@ void DirWidget::OpenContextMenu(){ contextMenu->addAction(LXDG::findIcon("edit-delete",""), tr("Delete Selection"), this, SLOT(on_tool_act_rm_clicked()) )->setEnabled(canmodify&&!sel.isEmpty()); if(LUtils::isValidBinary("lumina-fileinfo")){ contextMenu->addSeparator(); - contextMenu->addAction(LXDG::findIcon("edit-find-replace",""), tr("File Properties"), this, SLOT(fileProperties()) )->setEnabled(!sel.isEmpty()); + contextMenu->addAction(LXDG::findIcon("edit-find-replace",""), tr("File Properties..."), this, SLOT(fileProperties()) )->setEnabled(!sel.isEmpty()); } contextMenu->addSeparator(); contextMenu->addAction(LXDG::findIcon("system-search",""), tr("Open Terminal here"), this, SLOT(openTerminal())); |