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
This commit is contained in:
John Levon 2002-09-17 15:02:02 +00:00
parent 3e609657db
commit 9e84821c8b
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-09-17 John Levon <levon@movementarian.org>
* QLPainter.C: use dots for dashes because Qt sucks
2002-09-16 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* Toolbar_pimpl.C (changed_layout): when selecting a layout in

View File

@ -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) {