]> git.lyx.org Git - features.git/commitdiff
* cosmetic
authorStefan Schimanski <sts@lyx.org>
Thu, 28 Feb 2008 12:41:33 +0000 (12:41 +0000)
committerStefan Schimanski <sts@lyx.org>
Thu, 28 Feb 2008 12:41:33 +0000 (12:41 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23311 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiWorkArea.cpp

index f97fd0bb12fadccf33cd35050dd63a6ae3f9a782..6eacb00178a76efc782a84c6605373f8c69f1315 100644 (file)
@@ -124,17 +124,21 @@ public:
                if (show_ && rect_.isValid()) {
                        switch (shape_) {
                        case L_SHAPE:
-                               painter.fillRect(rect_.x(), rect_.y(), CursorWidth, rect_.height(), color_);
+                               painter.fillRect(rect_.x(), rect_.y(), 
+                                       CursorWidth, rect_.height(), color_);
                                painter.setPen(color_);
-                               painter.drawLine(rect_.bottomLeft().x() + CursorWidth, rect_.bottomLeft().y(),
-                                                                                                rect_.bottomRight().x(), rect_.bottomLeft().y());
+                               painter.drawLine(rect_.bottomLeft().x() + CursorWidth, 
+                                       rect_.bottomLeft().y(),
+                                       rect_.bottomRight().x(), rect_.bottomLeft().y());
                                break;
                        
                        case REVERSED_L_SHAPE:
-                               painter.fillRect(rect_.x() + rect_.height() / 3, rect_.y(), CursorWidth, rect_.height(), color_);
+                               painter.fillRect(rect_.x() + rect_.height() / 3, rect_.y(), 
+                                       CursorWidth, rect_.height(), color_);
                                painter.setPen(color_);
-                               painter.drawLine(rect_.bottomRight().x() - CursorWidth, rect_.bottomLeft().y(),
-                                                                                                        rect_.bottomLeft().x(), rect_.bottomLeft().y());
+                               painter.drawLine(rect_.bottomRight().x() - CursorWidth,
+                                       rect_.bottomLeft().y(),
+                                       rect_.bottomLeft().x(), rect_.bottomLeft().y());
                                break;
                                        
                        default: