mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 20:50:20 +08:00
Display number of selected nodes from ListTables in status bar. Fixes issue #3127.
This commit is contained in:
@ -4696,8 +4696,15 @@ end;
|
|||||||
}
|
}
|
||||||
procedure TMainForm.ListTablesChange(Sender: TBaseVirtualTree; Node:
|
procedure TMainForm.ListTablesChange(Sender: TBaseVirtualTree; Node:
|
||||||
PVirtualNode);
|
PVirtualNode);
|
||||||
|
var
|
||||||
|
Msg: String;
|
||||||
begin
|
begin
|
||||||
ValidateControls(Sender);
|
ValidateControls(Sender);
|
||||||
|
if ListTables.SelectedCount > 1 then
|
||||||
|
Msg := _('Selected') + ': ' + FormatNumber(ListTables.SelectedCount)
|
||||||
|
else
|
||||||
|
Msg := '';
|
||||||
|
ShowStatusMsg(Msg, 1)
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user