summaryrefslogtreecommitdiff
path: root/utils/themeeditor/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/graphics')
-rw-r--r--utils/themeeditor/graphics/rbviewport.cpp20
-rw-r--r--utils/themeeditor/graphics/rbviewport.h2
2 files changed, 8 insertions, 14 deletions
diff --git a/utils/themeeditor/graphics/rbviewport.cpp b/utils/themeeditor/graphics/rbviewport.cpp
index 2dd272927e..d4a8ede090 100644
--- a/utils/themeeditor/graphics/rbviewport.cpp
+++ b/utils/themeeditor/graphics/rbviewport.cpp
@@ -154,20 +154,14 @@ void RBViewport::paint(QPainter *painter,
painter->fillRect(QRectF(0, 0, size.width(), 8), statusBarTexture);
}
-void RBViewport::newLine(bool force)
+void RBViewport::newLine()
{
- if(leftText.count() != 0
- || centerText.count() != 0
- || rightText.count() != 0
- || force)
- {
- textOffset.setY(textOffset.y() + lineHeight);
- textOffset.setX(0);
- textAlign = Left;
- leftText.clear();
- rightText.clear();
- centerText.clear();
- }
+ textOffset.setY(textOffset.y() + lineHeight);
+ textOffset.setX(0);
+ textAlign = Left;
+ leftText.clear();
+ rightText.clear();
+ centerText.clear();
}
void RBViewport::write(QString text)
diff --git a/utils/themeeditor/graphics/rbviewport.h b/utils/themeeditor/graphics/rbviewport.h
index ee7d0540eb..2aff315873 100644
--- a/utils/themeeditor/graphics/rbviewport.h
+++ b/utils/themeeditor/graphics/rbviewport.h
@@ -53,7 +53,7 @@ public:
void makeCustomUI(){ customUI = true; }
void clearCustomUI(){ customUI = false; }
- void newLine(bool force = false);
+ void newLine();
void write(QString text);
void alignText(Alignment align){ textAlign = align; }