mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-06 00:07:29 -04:00
Merge pull request #62518 from qgis/backport-62505-to-release-3_44
[Backport release-3_44] Fix again value map config dlg with NULL values
This commit is contained in:
commit
9e1d0c2346
@ -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