mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
Fix: Cocoa/TKASPathEdit: call AutoComplete() only when changed by user now
This commit is contained in:
parent
41d9b7e830
commit
f4a5ad5ef0
1 changed files with 4 additions and 2 deletions
|
|
@ -367,8 +367,10 @@ end;
|
|||
procedure TKASPathEdit.TextChanged;
|
||||
begin
|
||||
Inherited;
|
||||
// TextChanged is called by user input, "if Modified" is not need
|
||||
if FAutoComplete then AutoComplete(Text);
|
||||
if not Modified then
|
||||
Exit;
|
||||
if FAutoComplete then
|
||||
AutoComplete(Text);
|
||||
end;
|
||||
{$ENDIF}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue