]> git.lyx.org Git - features.git/commitdiff
Use dots instead of dashes - it jives better with LyX's idea of what a dash is
authorJohn Levon <levon@movementarian.org>
Tue, 17 Sep 2002 15:02:02 +0000 (15:02 +0000)
committerJohn Levon <levon@movementarian.org>
Tue, 17 Sep 2002 15:02:02 +0000 (15:02 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5315 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt2/ChangeLog
src/frontends/qt2/QLPainter.C

index 7858cf3a8005346bef4f44d261e590d06d2c0412..d86546d1d15bb964f91464b365f9aefabf220ddd 100644 (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
index 1d170359e574fe784604c3f21ae6f88662235db4..6df50cdce9ea7794568ede61e96e356829ee5e0d 100644 (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) {