2015-04-06, 19:38
There is a bug in the HomeAddonsCommonLayout include (found in the includes.xml file, from line 946).
The following sections are never invoked because the <visible> tags are wrong (lines 1038 and 1050):
I believe that the 2 lines marked should read:
and
respectively.
The following sections are never invoked because the <visible> tags are wrong (lines 1038 and 1050):
Code:
<control type="label">
<left>1</left>
<top>125</top>
<width>180</width>
<height>20</height>
<font>font12</font>
<textcolor>white</textcolor>
<align>center</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label]</label>
<visible>Control.HasFocus(9002)</visible> <== Line 1038
</control>
<control type="label">
<left>1</left>
<top>125</top>
<width>180</width>
<height>20</height>
<font>font12</font>
<textcolor>grey2</textcolor>
<align>center</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label]</label>
<visible>!Control.HasFocus(9002)</visible> <== Line 1050
</control>
I believe that the 2 lines marked should read:
Code:
<visible>ControlGroup(9002).HasFocus</visible>
and
Code:
<visible>!ControlGroup(9002).HasFocus</visible>
respectively.