Jürgen Spitzmüller wrote:
Abdelrazak Younes wrote:
This strikes me like the identical bug.
Hum, that might just be a redraw problem...
But the name is not changed indeed (as view source reveals).
Another idea:
void InsetCommand::metrics(MetricsInfo & mi, Dimension & dim) const
{
if (updateButtonLabel_) {
updateButtonLabel_ = false;
button_.update(screenLabel(), editable() != NOT_EDITABLE);
}
button_.metrics(mi, dim);
}
Maybe this 'updateButtonLabel_' boolean does not interact well with our
setParam() calls...
Abdel.