Fix missing signal/slot connection resulting in non-woring autocompleter for value relation fields (fixes #16676).

This oneliner introduces the missing signal/slot connection, and fixes the bug.
This commit is contained in:
Frank Dekervel 2017-11-29 11:11:13 +01:00 committed by Matthias Kuhn
parent 7584bf1310
commit 51ec70abc0

View File

@ -137,6 +137,8 @@ void QgsValueRelationWidgetWrapper::initWidget( QWidget *editor )
QCompleter *completer = new QCompleter( m, mLineEdit );
completer->setCaseSensitivity( Qt::CaseInsensitive );
mLineEdit->setCompleter( completer );
connect( mLineEdit, &QLineEdit::textChanged, this, static_cast<void ( QgsEditorWidgetWrapper::* )()>( &QgsEditorWidgetWrapper::valueChanged ) );
}
}