Changeset 4629


Ignore:
Timestamp:
Aug 8, 2021, 11:27:53 AM (4 years ago)
Author:
Andreas Schnellbacher
Message:
  • Save menu item texts as array vars only if required for variable or conditional texts to reduce the size of the array file.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/menu.e

    r4627 r4629  
    10051005   if IdName <> '' then
    10061006      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
    10101014      if wordpos( MIS_SUBMENU, NextMenuItemStyle) then
    10111015         -- Required for menu inits
Note: See TracChangeset for help on using the changeset viewer.