* src/insets/InsetCharStyle.cpp (draw):

- the status bar message on mouse hovering triggered a crash
	  when a math inset was embedded in a char style inset (bug 4559)
	  Until a better solution is found, the message is disabled.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@23055 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2008-02-18 11:12:01 +00:00
parent 7ff3620577
commit 2c45aab0ac
2 changed files with 8 additions and 1 deletions

View File

@ -220,7 +220,9 @@ void InsetCharStyle::draw(PainterInfo & pi, int x, int y) const
pi.pain.line(x + dim_.wid - 7, y, x + dim_.wid - 3, y,
params_.labelfont.color());
pi.base.bv->message(_("CharStyle: ") + s);
//FIXME: I had to disable this, since it triggers a crash
// (cf. http://bugzilla.lyx.org/show_bug.cgi?id=4559)
//pi.base.bv->message(_("CharStyle: ") + s);
}
}

View File

@ -155,6 +155,11 @@ What's new
- Fix a crash following the input of an invalid paragraph separation
value in the document settings dialog (bug 4556).
- Fix a crash when inserting a math formula into a char style inset.
To fix this, the status bar information that was displayed when
hovering over a char style has to be disabled for the time being
(bug 4559).
- Do not exit after catching an iconv exception (bug 4385, part 2).
- Fix update/drawing of character style insets.