[PATCH] qgit: increase the space between the lanes.
From: Martin Atukunda <hidden>
Date: 2016-06-15 22:42:15
There are probably better ways of doing this. Signed-off-by: Martin Atukunda <redacted> --- src/mainimpl.cpp | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) 28ddfe1297a5e1e212fc35c3419cf8364415847e
diff --git a/src/mainimpl.cpp b/src/mainimpl.cpp
index d7c4e39..1b1f0f0 100644
--- a/src/mainimpl.cpp
+++ b/src/mainimpl.cpp@@ -1409,7 +1409,7 @@ void MainImpl::setupPixmaps() { // little hack to read items height new QListViewItem(listViewLog); ph = listViewLog->firstChild()->height(); - pw = ph / 2; + pw = ph / 2 + 4; listViewLog->clear(); // remove and deletes items QPixmap cm(pw, ph); cm.fill();
@@ -1443,17 +1443,17 @@ void MainImpl::setupPixmaps() { case MERGE_FORK: p.drawLine(P_90, P_270); p.drawLine(P_180, P_0); - p.drawRect(pw/4, ph/4, pw/2, ph/2); + p.drawRect(pw/4+1, ph/4, pw/2, ph/2); break; case MERGE_FORK_R: p.drawLine(P_90, P_270); p.drawLine(P_180, P_OR); - p.drawRect(pw/4, ph/4, pw/2, ph/2); + p.drawRect(pw/4+1, ph/4, pw/2, ph/2); break; case MERGE_FORK_L: p.drawLine(P_90, P_270); p.drawLine(P_OR, P_0); - p.drawRect(pw/4, ph/4, pw/2, ph/2); + p.drawRect(pw/4+1, ph/4, pw/2, ph/2); break; case JOIN: p.drawLine(P_90, P_270);
--
1.0.GIT