mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-27 00:33:48 -05:00
Fix crash if multiple multiline text edtit widgets for the same field are shown
Fix #11813
This commit is contained in:
parent
8eca38ca5f
commit
2bd39e264e
@ -130,27 +130,33 @@ void QgsTextEditWrapper::initWidget( QWidget* editor )
|
||||
}
|
||||
}
|
||||
|
||||
void QgsTextEditWrapper::setValue( const QVariant& value )
|
||||
void QgsTextEditWrapper::setValue( const QVariant& val )
|
||||
{
|
||||
QString v;
|
||||
if ( value.isNull() )
|
||||
if ( val.isNull() )
|
||||
{
|
||||
if ( !( field().type() == QVariant::Int || field().type() == QVariant::Double || field().type() == QVariant::LongLong || field().type() == QVariant::Date ) )
|
||||
v = QSettings().value( "qgis/nullValue", "NULL" ).toString();
|
||||
}
|
||||
else
|
||||
v = value.toString();
|
||||
v = val.toString();
|
||||
|
||||
if ( mTextEdit )
|
||||
{
|
||||
if ( config( "UseHtml" ).toBool() )
|
||||
mTextEdit->setHtml( v );
|
||||
else
|
||||
mTextEdit->setPlainText( v );
|
||||
if ( val != value() )
|
||||
{
|
||||
if ( config( "UseHtml" ).toBool() )
|
||||
mTextEdit->setHtml( v );
|
||||
else
|
||||
mTextEdit->setPlainText( v );
|
||||
}
|
||||
}
|
||||
|
||||
if ( mPlainTextEdit )
|
||||
mPlainTextEdit->setPlainText( v );
|
||||
{
|
||||
if ( val != value() )
|
||||
mPlainTextEdit->setPlainText( v );
|
||||
}
|
||||
|
||||
if ( mLineEdit )
|
||||
mLineEdit->setText( v );
|
||||
|
Loading…
x
Reference in New Issue
Block a user