Skip to content

Commit

Permalink
[i18n] Make string translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
assar committed Aug 23, 2018
1 parent 6196fd3 commit 9bf7c9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/3d/qgsvectorlayer3drendererwidget.cpp
Expand Up @@ -36,7 +36,7 @@ QgsVectorLayer3DRendererWidget::QgsVectorLayer3DRendererWidget( QgsVectorLayer *
setPanelTitle( tr( "3D View" ) );

QVBoxLayout *layout = new QVBoxLayout( this );
chkEnabled = new QCheckBox( "Enable 3D renderer", this );
chkEnabled = new QCheckBox( tr( "Enable 3D renderer" ), this );
widgetStack = new QStackedWidget( this );
layout->addWidget( chkEnabled );
layout->addWidget( widgetStack );
Expand Down

0 comments on commit 9bf7c9e

Please sign in to comment.