Skip to content

Commit

Permalink
Add separator between rename and remove for browser
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Mar 5, 2018
1 parent e33ff2d commit 4ef667d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/gui/qgsbrowserdockwidget.cpp
Expand Up @@ -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();
}
Expand Down

0 comments on commit 4ef667d

Please sign in to comment.