| 832 | } |
| 833 | |
| 834 | void |
| 835 | SequenceFileDialog::showContextMenu(const QPoint & position) |
| 836 | { |
| 837 | Menu menu(_view); |
| 838 | |
| 839 | menu.addAction(_showHiddenAction); |
| 840 | if ( _createDirButton->isVisible() ) { |
| 841 | _newFolderAction->setEnabled( _createDirButton->isEnabled() ); |
| 842 | menu.addAction(_newFolderAction); |
| 843 | } |
| 844 | menu.exec( _view->viewport()->mapToGlobal(position) ); |
| 845 | } |
| 846 | |
| 847 | void |
| 848 | SequenceFileDialog::createMenuActions() |
nothing calls this directly
no test coverage detected