]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Painter.C
Lars says _(_(b)) is a bug ... fix
[lyx.git] / src / frontends / Painter.C
index 6ebfe001366fdc87a7c87d7ca6245bf180b51a53..ec555e96242bc9eda6fa39f2d7656f3aeb06d724 100644 (file)
@@ -69,15 +69,15 @@ Painter & Painter::rectText(int x, int baseline,
 
        font_metrics::rectText(str, font, width, ascent, descent);
  
-       if (frame != LColor::none) {
-               rectangle(x, baseline - ascent, width, ascent + descent, frame);
-       }
        if (back != LColor::none) {
                fillRectangle(x + 1, baseline - ascent + 1, width - 1, 
                              ascent + descent - 1, back);
        }
  
+       if (frame != LColor::none) {
+               rectangle(x, baseline - ascent, width, ascent + descent, frame);
+       }
        text(x + 3, baseline, str, font);
        return *this;
 }