mirror of https://gitlab.com/basile.b/dexed.git
libman, fix, state of the reg btn not set properly
This commit is contained in:
parent
d48aa0b38b
commit
2c67672edd
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<CONFIG>
|
<CONFIG>
|
||||||
<ProjectOptions>
|
<ProjectOptions>
|
||||||
<Version Value="9"/>
|
<Version Value="10"/>
|
||||||
<PathDelim Value="\"/>
|
<PathDelim Value="\"/>
|
||||||
<General>
|
<General>
|
||||||
<SessionStorage Value="InProjectDir"/>
|
<SessionStorage Value="InProjectDir"/>
|
||||||
|
|
|
@ -131,7 +131,8 @@ end;
|
||||||
|
|
||||||
procedure TCELibManEditorWidget.projClosing(project: ICECommonProject);
|
procedure TCELibManEditorWidget.projClosing(project: ICECommonProject);
|
||||||
begin
|
begin
|
||||||
fProj := nil;
|
if fProj = project then
|
||||||
|
fProj := nil;
|
||||||
if project = fFreeProj then
|
if project = fFreeProj then
|
||||||
fFreeProj := nil;
|
fFreeProj := nil;
|
||||||
updateButtonsState;
|
updateButtonsState;
|
||||||
|
@ -699,6 +700,7 @@ begin
|
||||||
exit;
|
exit;
|
||||||
LibMan.libraries.Delete(List.Selected.Index);
|
LibMan.libraries.Delete(List.Selected.Index);
|
||||||
List.Items.Delete(List.Selected.Index);
|
List.Items.Delete(List.Selected.Index);
|
||||||
|
updateButtonsState;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TCELibManEditorWidget.btnSelProjClick(Sender: TObject);
|
procedure TCELibManEditorWidget.btnSelProjClick(Sender: TObject);
|
||||||
|
|
Loading…
Reference in New Issue