summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjasplin <qt-info@nokia.com>2010-04-12 15:48:09 +0200
committerjasplin <qt-info@nokia.com>2010-04-12 15:48:09 +0200
commit84599511109349c580a825afe864ccbf0dbbf87c (patch)
treee550076998c6bab34f1b9e2c7e67ec10c4e2abb1
parent5609cfbea2d8bae1416f3b4b4a90abc58f70e846 (diff)
Dropped drawing plot borders.
-rw-r--r--src/bm/plotter.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bm/plotter.cpp b/src/bm/plotter.cpp
index 1a6be7a..d76a862 100644
--- a/src/bm/plotter.cpp
+++ b/src/bm/plotter.cpp
@@ -753,10 +753,11 @@ bool HistoriesPlotter::drawScenes(
// Draw background rectangle ...
scene_far->addRect(
- xmin, ymin, xmax - xmin, ymax - ymin, QPen(), QBrush(QColor(245, 245, 245, 255)));
+ xmin, ymin, xmax - xmin, ymax - ymin, QPen(Qt::NoPen),
+ QBrush(QColor(245, 245, 245, 255)));
// Draw border rectangle ...
- scene_far->addRect(xmin, ymin, xmax - xmin, ymax - ymin, QPen(QColor(220, 220, 220, 255)));
+ // scene_far->addRect(xmin, ymin, xmax - xmin, ymax - ymin, QPen(QColor(220, 220, 220, 255)));
const qreal dpSize = 4;