X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetinfo.C;h=3c58a89091a6712664fb6cd0b797b7019277fab9;hb=3c8aba3b556871fb1100a2f98cd93d5d4e3f70c9;hp=2a03b97462471627d743a154559cb60d61894c43;hpb=77e706c44175f3cf71473a42d5db890c77b3b7b3;p=lyx.git diff --git a/src/insets/insetinfo.C b/src/insets/insetinfo.C index 2a03b97462..3c58a89091 100644 --- a/src/insets/insetinfo.C +++ b/src/insets/insetinfo.C @@ -81,16 +81,18 @@ void InsetInfo::draw(Painter & pain, LyXFont const & f, LyXFont font(f); /* Info-insets are never LaTeX, so just correct the font */ - font.setLatex(LyXFont::OFF); - + font.setLatex(LyXFont::OFF).setColor(LColor::note); + // Draw as "Note" in a yellow box x += 1; pain.fillRectangle(int(x), baseline - ascent(pain, font) + 1, width(pain, font) - 2, - ascent(pain, font) + descent(pain, font) - 2); + ascent(pain, font) + descent(pain, font) - 2, + LColor::notebg); pain.rectangle(int(x), baseline - ascent(pain, font) + 1, width(pain, font) - 2, - ascent(pain, font) + descent(pain, font) - 2); + ascent(pain, font) + descent(pain, font) - 2, + LColor::noteframe); pain.text(int(x + 2), baseline, _("Note"), font); x += width(pain, font) - 1; @@ -131,7 +133,13 @@ void InsetInfo::Read(LyXLex & lex) int InsetInfo::Latex(ostream &, - signed char /*fragile*/, bool /*free_spc*/) const + bool /*fragile*/, bool /*free_spc*/) const +{ + return 0; +} + + +int InsetInfo::Ascii(ostream &) const { return 0; }