mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Override VirtualTree's incremental search event, make it case insensitive, and apply that event in FixVT to various lists and grids, which have IncrementalSearch enabled. Fixes issue #1605.
This commit is contained in:
@ -2515,6 +2515,9 @@ begin
|
||||
VT.OnGetHint := MainForm.vstGetHint;
|
||||
VT.ShowHint := True;
|
||||
VT.HintMode := hmToolTip;
|
||||
// Apply case insensitive incremental search event
|
||||
if VT.IncrementalSearch <> isNone then
|
||||
VT.OnIncrementalSearch := Mainform.vstIncrementalSearch;
|
||||
end;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user