Changeset 4629
- Timestamp:
- Aug 8, 2021, 11:27:53 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/menu.e ¶
r4627 r4629 1005 1005 if IdName <> '' then 1006 1006 call SetAvar( 'mid_'IdName, CurMenuItemId) 1007 -- Text vars and conditional texts are resolved by menu inits. 1008 -- Therefore the Text string is saved as array var. 1009 call SetAvar( 'mtxt_'IdName, Text) 1007 -- Text vars and conditional texts are resolved by menu inits. Therefore 1008 -- the Text string is saved as array var. To reduce the size of the array 1009 -- file, this is only done if required for variable or conditional text. 1010 if pos( '%', Text) | leftstr( Text, 1) = '|' then 1011 -- Required for variable or conditional text 1012 call SetAvar( 'mtxt_'IdName, Text) 1013 endif 1010 1014 if wordpos( MIS_SUBMENU, NextMenuItemStyle) then 1011 1015 -- Required for menu inits
Note:
See TracChangeset
for help on using the changeset viewer.