Skip to content

Commit

Permalink
Align coordinates labels with the frame divisions'
Browse files Browse the repository at this point in the history
mentioning X and Y directions
  • Loading branch information
DelazJ authored and nyalldawson committed Sep 20, 2020
1 parent 8e284dc commit 8b03293
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/layout/qgslayoutmapgridwidget.cpp
Expand Up @@ -416,8 +416,8 @@ void QgsLayoutMapGridWidget::insertFrameDisplayEntries( QComboBox *c )
void QgsLayoutMapGridWidget::insertAnnotationDisplayEntries( QComboBox *c )
{
c->insertItem( 0, tr( "Show All" ), QgsLayoutItemMapGrid::ShowAll );
c->insertItem( 1, tr( "Show Latitude Only" ), QgsLayoutItemMapGrid::LatitudeOnly );
c->insertItem( 2, tr( "Show Longitude Only" ), QgsLayoutItemMapGrid::LongitudeOnly );
c->insertItem( 1, tr( "Show Latitude/Y Only" ), QgsLayoutItemMapGrid::LatitudeOnly );
c->insertItem( 2, tr( "Show Longitude/X Only" ), QgsLayoutItemMapGrid::LongitudeOnly );
c->insertItem( 3, tr( "Disabled" ), QgsLayoutItemMapGrid::HideAll );
}

Expand Down

0 comments on commit 8b03293

Please sign in to comment.