mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 06:09:15 +02:00
LCL: DBLookupCombobox should not update if it's unbound, fixes autocompletion, issue #34298
This commit is contained in:
parent
ecfda1dffb
commit
71d8b00d81
@ -48,10 +48,8 @@ begin
|
||||
if IsUnbound then begin
|
||||
if FDetectedEvents and DBCBEVENT_CHANGE <> 0 then
|
||||
DoOnChange;
|
||||
if DetectedEvents and DBCBEVENT_SELECT <>0 then begin
|
||||
UpdateData(self);
|
||||
if DetectedEvents and DBCBEVENT_SELECT <>0 then
|
||||
DoOnSelect;
|
||||
end;
|
||||
if DetectedEvents and DBCBEVENT_CLOSEUP <>0 then
|
||||
DoOnCloseUp;
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user