mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-07 00:15:48 -04:00
Fix again value map config dlg with NULL values
This commit is contained in:
parent
a26b91b364
commit
2f8de1e7cb
@ -246,7 +246,7 @@ void QgsValueMapConfigDlg::updateMap( const QList<QPair<QString, QVariant>> &lis
|
||||
|
||||
QString QgsValueMapConfigDlg::checkValueLength( const QString &value )
|
||||
{
|
||||
if ( value == QgsApplication::nullRepresentation() )
|
||||
if ( value == QgsValueMapFieldFormatter::NULL_VALUE || value == QgsApplication::nullRepresentation() )
|
||||
{
|
||||
return value;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user