mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-13 17:03:01 +02:00
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:
parent
9bb496c3dd
commit
1d5e53891e
@ -652,9 +652,9 @@ begin
|
||||
if LazProject.EnableI18N and LazProject.EnableI18NForLFM
|
||||
and (HasLFMCount>0) then begin
|
||||
AddPopupMenuItem(lisEnableI18NForLFM,
|
||||
@EnableI18NForLFMMenuItemClick, DisabledI18NForLFMCount<HasLFMCount);
|
||||
@EnableI18NForLFMMenuItemClick, DisabledI18NForLFMCount>0);
|
||||
AddPopupMenuItem(lisDisableI18NForLFM,
|
||||
@DisableI18NForLFMMenuItemClick, DisabledI18NForLFMCount>0);
|
||||
@DisableI18NForLFMMenuItemClick, DisabledI18NForLFMCount<HasLFMCount);
|
||||
end;
|
||||
|
||||
// Required packages section
|
||||
|
Loading…
Reference in New Issue
Block a user