From: John Levon Date: Tue, 17 Sep 2002 15:02:02 +0000 (+0000) Subject: Use dots instead of dashes - it jives better with LyX's idea of what a dash is X-Git-Tag: 1.6.10~18259 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=9e84821c8b095b2860e399707faba43385f1de77;p=features.git Use dots instead of dashes - it jives better with LyX's idea of what a dash is git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5315 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt2/ChangeLog b/src/frontends/qt2/ChangeLog index 7858cf3a80..d86546d1d1 100644 --- a/src/frontends/qt2/ChangeLog +++ b/src/frontends/qt2/ChangeLog @@ -1,3 +1,7 @@ +2002-09-17 John Levon + + * QLPainter.C: use dots for dashes because Qt sucks + 2002-09-16 Jean-Marc Lasgouttes * Toolbar_pimpl.C (changed_layout): when selecting a layout in diff --git a/src/frontends/qt2/QLPainter.C b/src/frontends/qt2/QLPainter.C index 1d170359e5..6df50cdce9 100644 --- a/src/frontends/qt2/QLPainter.C +++ b/src/frontends/qt2/QLPainter.C @@ -77,7 +77,7 @@ QPainter & QLPainter::setPen(LColor::color c, switch (ls) { case line_solid: pen.setStyle(QPen::SolidLine); break; - case line_onoffdash: pen.setStyle(QPen::DashLine); break; + case line_onoffdash: pen.setStyle(QPen::DotLine); break; } switch (lw) {