Skip to content

Commit

Permalink
LAYOUT attr table widget width localization
Browse files Browse the repository at this point in the history
Fix #54204
  • Loading branch information
elpaso authored and github-actions[bot] committed Sep 29, 2023
1 parent 5786239 commit 4514acb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/layout/qgslayoutattributeselectiondialog.cpp
Expand Up @@ -149,7 +149,7 @@ QVariant QgsLayoutAttributeTableColumnModelBase::data( const QModelIndex &index,
{
if ( role == Qt::DisplayRole )
{
return column.width() <= 0 ? tr( "Automatic" ) : tr( "%1 mm" ).arg( column.width(), 0, 'f', 2 );
return column.width() <= 0 ? tr( "Automatic" ) : tr( "%L1 mm" ).arg( column.width(), 0, 'f', 2 );
}
else
{
Expand Down

0 comments on commit 4514acb

Please sign in to comment.