Skip to content

Commit

Permalink
QgsDecorationGridDialog: fixed the "Horizontal and Vertical" option
Browse files Browse the repository at this point in the history
It was set with a lowercase v and then checked with an uppercase one:
qgsdecorationgriddialog.cpp:57:      tr( "Horizontal and vertical" ) );
qgsdecorationgriddialog.cpp:145:  else if ( text == tr( "Horizontal and Vertical" ) )

The lowercase variant is newer when you check the translation files - nobody
has it translated without also having the uppercase one too.
  • Loading branch information
lynxlynxlynx committed Aug 6, 2013
1 parent 909411c commit 91f00f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsdecorationgriddialog.cpp
Expand Up @@ -54,7 +54,7 @@ QgsDecorationGridDialog::QgsDecorationGridDialog( QgsDecorationGrid& deco, QWidg
mAnnotationDirectionComboBox->insertItem( QgsDecorationGrid::Vertical,
tr( "Vertical" ) );
mAnnotationDirectionComboBox->insertItem( QgsDecorationGrid::HorizontalAndVertical,
tr( "Horizontal and vertical" ) );
tr( "Horizontal and Vertical" ) );
mAnnotationDirectionComboBox->insertItem( QgsDecorationGrid::BoundaryDirection,
tr( "Boundary direction" ) );

Expand Down

0 comments on commit 91f00f3

Please sign in to comment.