summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoopesh Chander <roop@forwardbias.in>2009-11-13 17:23:20 +0530
committerRoopesh Chander <roop@forwardbias.in>2009-11-13 17:23:20 +0530
commit81dddbf093807911578d9eb1979ee9952b3232a6 (patch)
tree70a4b460f355cbdcd9ca628e169d2743b0292ce7
parentd86b0e81bd9510391aa66d7331999225a58f630d (diff)
change colors a bit. again. :)
-rw-r--r--mainwindow.cpp2
-rw-r--r--webscrap.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp
index a253e96..de98a56 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -21,7 +21,7 @@ MainWindow::MainWindow(QWidget *parent)
{
setScene(new QGraphicsScene);
setMouseTracking(true);
- setBackgroundBrush(Qt::black);
+ setBackgroundBrush(Qt::white);
// web settings
QWebSettings::globalSettings()->setAttribute(QWebSettings::JavascriptEnabled, true);
diff --git a/webscrap.cpp b/webscrap.cpp
index a4979f1..f949618 100644
--- a/webscrap.cpp
+++ b/webscrap.cpp
@@ -258,9 +258,9 @@ WebScrapContainer::WebScrapContainer(WebScrap *scrap, QGraphicsScene *scene, qre
m_scrap->setTransformations(txs);
m_glow = new QGraphicsDropShadowEffect(this);
- m_glow->setProperty("color", Qt::gray);
- m_glow->setProperty("offset", QPointF(0, -3));
- m_glow->setProperty("blurRadius", 15);
+ m_glow->setProperty("color", QColor("black").lighter(200));
+ m_glow->setProperty("offset", QPointF(-1, -4));
+ m_glow->setProperty("blurRadius", 5);
setGraphicsEffect(m_glow);
}