I had one of Martin's patches in my tree, and this bit is still left over. The header in CVS declares it, but not in defined in the .C.
Should this be committed too ? john Index: src/insets/insetfootlike.C =================================================================== RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/insetfootlike.C,v retrieving revision 1.25 diff -u -p -r1.25 insetfootlike.C --- src/insets/insetfootlike.C 26 Aug 2003 10:33:58 -0000 1.25 +++ src/insets/insetfootlike.C 26 Aug 2003 16:13:47 -0000 @@ -42,6 +42,14 @@ InsetFootlike::InsetFootlike(InsetFootli setLabelFont(font); } +void InsetFootlike::metrics(MetricsInfo & mi, Dimension & dim) const +{ + InsetCollapsable::metrics(mi, dim); + if (isOpen()) + dim.wid = mi.base.textwidth; + dim_ = dim; +} + void InsetFootlike::metrics(MetricsInfo & mi, Dimension & dim) const { -- Khendon's Law: If the same point is made twice by the same person, the thread is over.