mirror of https://gitlab.com/basile.b/dexed.git
force confIndex setter to update after conf deletion
This commit is contained in:
parent
3d02a0b4c4
commit
dfdb19e16a
|
@ -187,7 +187,6 @@ end;
|
||||||
|
|
||||||
procedure TCEProject.setConfIx(aValue: Integer);
|
procedure TCEProject.setConfIx(aValue: Integer);
|
||||||
begin
|
begin
|
||||||
if fConfIx = aValue then exit;
|
|
||||||
beforeChanged;
|
beforeChanged;
|
||||||
if aValue < 0 then aValue := 0;
|
if aValue < 0 then aValue := 0;
|
||||||
if aValue > fOptsColl.Count-1 then aValue := fOptsColl.Count-1;
|
if aValue > fOptsColl.Count-1 then aValue := fOptsColl.Count-1;
|
||||||
|
|
Loading…
Reference in New Issue