Skip to content

Commit cf92644

Browse files
jakimowbnyalldawson
authored andcommittedMar 1, 2023
Renamed the QgsPenStyleComboBox Qt::NoPen entry to "No Line", which is
consistent with names for other entries. Signed-off-by: Benjamin Jakimow <benjamin.jakimow@geo.hu-berlin.de>
1 parent 1a4bf27 commit cf92644

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/symbology/qgspenstylecombobox.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ QgsPenStyleComboBox::QgsPenStyleComboBox( QWidget *parent )
2929
{
3030
QList < QPair<Qt::PenStyle, QString> > styles;
3131
styles << qMakePair( Qt::SolidLine, tr( "Solid Line" ) )
32-
<< qMakePair( Qt::NoPen, tr( "No Pen" ) )
32+
<< qMakePair( Qt::NoPen, tr( "No Line" ) )
3333
<< qMakePair( Qt::DashLine, tr( "Dash Line" ) )
3434
<< qMakePair( Qt::DotLine, tr( "Dot Line" ) )
3535
<< qMakePair( Qt::DashDotLine, tr( "Dash Dot Line" ) )

0 commit comments

Comments
 (0)
Please sign in to comment.