mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 17:18:17 +02:00
IDE, debug registers: avoid extra updates
git-svn-id: trunk@62592 -
This commit is contained in:
parent
7e1fb75015
commit
84ac7fd966
@ -405,7 +405,8 @@ begin
|
||||
if (reg <> nil) then
|
||||
reg.Count;
|
||||
for n := 0 to lvRegisters.Items.Count - 1 do
|
||||
lvRegisters.Items[n].SubItems[0] := '<Unavailable>';
|
||||
if lvRegisters.Items[n].SubItems[0] <> '<Unavailable>' then
|
||||
lvRegisters.Items[n].SubItems[0] := '<Unavailable>';
|
||||
exit;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user