Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add separator between rename and remove for browser
- Loading branch information
Showing
with
1 addition
and
0 deletions.
-
+1
−0
src/gui/qgsbrowserdockwidget.cpp
|
@@ -211,6 +211,7 @@ void QgsBrowserDockWidget::showContextMenu( QPoint pt ) |
|
|
QAction *actionRename = new QAction( tr( "Rename Favorite…" ), this ); |
|
|
connect( actionRename, &QAction::triggered, this, &QgsBrowserDockWidget::renameFavorite ); |
|
|
menu->addAction( actionRename ); |
|
|
menu->addSeparator(); |
|
|
menu->addAction( tr( "Remove Favorite" ), this, SLOT( removeFavorite() ) ); |
|
|
menu->addSeparator(); |
|
|
} |
|
|