mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Select all text when open "Make directory" dialog
This commit is contained in:
parent
04bccd07f0
commit
6965bb1aaa
1 changed files with 5 additions and 2 deletions
|
|
@ -61,8 +61,11 @@ begin
|
|||
}
|
||||
// with TfrmMkDir.Create(Application) do
|
||||
try
|
||||
If (sPath <> '..') then cbMkDir.Text := sPath
|
||||
else cbMkDir.Text := ''; // передаем имя из фокуса панели в строку ввода, если не фокус не в '..'
|
||||
if (sPath <> '..') then
|
||||
cbMkDir.Text := sPath
|
||||
else
|
||||
cbMkDir.Text := ''; // передаем имя из фокуса панели в строку ввода, если не фокус не в '..'
|
||||
cbMkDir.SelectAll;
|
||||
Result:= (ShowModal = mrOK); // отображение окна
|
||||
sPath:=cbMkDir.Text;
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue