mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 06:38:06 +02:00
Debugger: "Copy callstack" do not clear clipboard to early. Issue #39880
This commit is contained in:
parent
715d70dc38
commit
f4e3f0e7e7
@ -513,10 +513,11 @@ var
|
||||
Entry: TIdeCallStackEntry;
|
||||
S: String;
|
||||
begin
|
||||
if (GetSelectedCallstack=nil) or (GetSelectedCallstack.Count=0) then
|
||||
exit;
|
||||
|
||||
Clipboard.Clear;
|
||||
|
||||
if (GetSelectedCallstack=nil) or (GetSelectedCallstack.Count=0) then exit;
|
||||
|
||||
|
||||
S := '';
|
||||
// GetSelectedCallstack.PrepareRange();
|
||||
for n:= 0 to GetSelectedCallstack.Count-1 do
|
||||
|
Loading…
Reference in New Issue
Block a user