libman, fix, state of the reg btn not set properly

This commit is contained in:
Basile Burg 2017-03-03 11:14:56 +01:00
parent d48aa0b38b
commit 2c67672edd
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<ProjectOptions>
<Version Value="9"/>
<Version Value="10"/>
<PathDelim Value="\"/>
<General>
<SessionStorage Value="InProjectDir"/>

View File

@ -131,7 +131,8 @@ end;
procedure TCELibManEditorWidget.projClosing(project: ICECommonProject);
begin
fProj := nil;
if fProj = project then
fProj := nil;
if project = fFreeProj then
fFreeProj := nil;
updateButtonsState;
@ -699,6 +700,7 @@ begin
exit;
LibMan.libraries.Delete(List.Selected.Index);
List.Items.Delete(List.Selected.Index);
updateButtonsState;
end;
procedure TCELibManEditorWidget.btnSelProjClick(Sender: TObject);