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