mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-11 00:04:09 -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 )
|
QString QgsValueMapConfigDlg::checkValueLength( const QString &value )
|
||||||
{
|
{
|
||||||
if ( value == QgsApplication::nullRepresentation() )
|
if ( value == QgsValueMapFieldFormatter::NULL_VALUE || value == QgsApplication::nullRepresentation() )
|
||||||
{
|
{
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user