mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-03 00:05:24 -04:00
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:
parent
7584bf1310
commit
51ec70abc0
@ -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 ) );
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user