<html>
    <head>
      <base href="http://bugzilla.ecoinformatics.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_ASSIGNED "
   title="ASSIGNED --- - Two empty boxes inside Sinewave actor when in Reporting suite"
   href="http://bugzilla.ecoinformatics.org/show_bug.cgi?id=5266#c14">Comment # 14</a>
              on <a class="bz_bug_link 
          bz_status_ASSIGNED "
   title="ASSIGNED --- - Two empty boxes inside Sinewave actor when in Reporting suite"
   href="http://bugzilla.ecoinformatics.org/show_bug.cgi?id=5266">bug 5266</a>
              from <span class="vcard"><a class="email" href="mailto:swriddle@gmail.com" title="Sean Riddle <swriddle@gmail.com>"> <span class="fn">Sean Riddle</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=5266#c13">comment #13</a>)
<span class="quote">> Note that the change to ValueIcon was backed out because of <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - parameter values no longer appear on canvas"
   href="show_bug.cgi?id=5719">bug #5719</a>, see
> <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - parameter values no longer appear on canvas"
   href="show_bug.cgi?id=5719#c2">http://bugzilla.ecoinformatics.org/show_bug.cgi?id=5719#c2</a></span >

I have a minor alteration of my earlier patch that I think would fix the
problem. The part of code that generates the label would be changed to:

String truncated = StringUtilities.truncateString(value, width, 1);
LabelFigure label;
if (container instanceof Parameter) {
    label = new LabelFigure(truncated, _labelFont, 1.0,
SwingConstants.SOUTH_WEST);
}
else {
    label = new LabelFigure(name + ": " + truncated, _labelFont, 1.0,
SwingConstants.SOUTH_WEST);
}

This prevents the label from being displayed as 'ParameterType:
ParameterValue'.

The reason that my patch caused all parameter labels to disappear is that
inexplicably all parameters declare _hideName. So simply removing the _hideName
property will make the labels visible. The above refinement to the patch is
only to make the resulting names in line with what they were originally.

Is this an acceptable solution?</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the QA Contact for the bug.</li>
      </ul>
    </body>
</html>