Merged revision(s) 52546 #cfb2c1dd76 from trunk:

IDE: fixed "Enable/Disable I18N for LFM" context menu items enabling logic in project inspector (it didn't allow to disable i18n actually due to typo)
........

git-svn-id: branches/fixes_1_6@52612 -
This commit is contained in:
maxim 2016-07-03 20:50:33 +00:00
parent 9bb496c3dd
commit 1d5e53891e

View File

@ -652,9 +652,9 @@ begin
if LazProject.EnableI18N and LazProject.EnableI18NForLFM if LazProject.EnableI18N and LazProject.EnableI18NForLFM
and (HasLFMCount>0) then begin and (HasLFMCount>0) then begin
AddPopupMenuItem(lisEnableI18NForLFM, AddPopupMenuItem(lisEnableI18NForLFM,
@EnableI18NForLFMMenuItemClick, DisabledI18NForLFMCount<HasLFMCount); @EnableI18NForLFMMenuItemClick, DisabledI18NForLFMCount>0);
AddPopupMenuItem(lisDisableI18NForLFM, AddPopupMenuItem(lisDisableI18NForLFM,
@DisableI18NForLFMMenuItemClick, DisabledI18NForLFMCount>0); @DisableI18NForLFMMenuItemClick, DisabledI18NForLFMCount<HasLFMCount);
end; end;
// Required packages section // Required packages section