mirror of https://gitlab.com/basile.b/dexed.git
fix, bad gutter icon displayed on breakpoint removed
This commit is contained in:
parent
541ceb240f
commit
f925277fc9
|
@ -7,6 +7,7 @@
|
||||||
## Bugs fixed
|
## Bugs fixed
|
||||||
|
|
||||||
- diff dialog: the content reloaded matched to the state when the dialog was shown, not when closed. (#97)
|
- diff dialog: the content reloaded matched to the state when the dialog was shown, not when closed. (#97)
|
||||||
|
- editor, debugging: during a debugging session, wrong icon displayed when a breakpoint is removed.
|
||||||
|
|
||||||
# v3.9.12
|
# v3.9.12
|
||||||
|
|
||||||
|
|
|
@ -3992,7 +3992,7 @@ begin
|
||||||
m := marks.Line[line];
|
m := marks.Line[line];
|
||||||
if m.isAssigned then
|
if m.isAssigned then
|
||||||
for i := 0 to m.count - 1 do
|
for i := 0 to m.count - 1 do
|
||||||
if (m[i].ImageIndex = integer(value)) then
|
if m[i].Visible and (m[i].ImageIndex = integer(value)) then
|
||||||
exit(true);
|
exit(true);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue