Skip to content

Commit 91f00f3

Browse files
committed
QgsDecorationGridDialog: fixed the "Horizontal and Vertical" option
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.
1 parent 909411c commit 91f00f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgsdecorationgriddialog.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ QgsDecorationGridDialog::QgsDecorationGridDialog( QgsDecorationGrid& deco, QWidg
5454
mAnnotationDirectionComboBox->insertItem( QgsDecorationGrid::Vertical,
5555
tr( "Vertical" ) );
5656
mAnnotationDirectionComboBox->insertItem( QgsDecorationGrid::HorizontalAndVertical,
57-
tr( "Horizontal and vertical" ) );
57+
tr( "Horizontal and Vertical" ) );
5858
mAnnotationDirectionComboBox->insertItem( QgsDecorationGrid::BoundaryDirection,
5959
tr( "Boundary direction" ) );
6060

0 commit comments

Comments
 (0)