From: sungmin ha Date: Wed, 17 Jun 2015 04:38:51 +0000 (+0900) Subject: display: set background color of blank-guide image X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~361 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dbaa63c47b330d70a5f7553d33ac68ba6c0352a2;p=sdk%2Femulator%2Fqemu.git display: set background color of blank-guide image The color is black. Change-Id: Icc711d249a6b02e31a681270303c05f7b588c738 Signed-off-by: sungmin ha --- diff --git a/tizen/src/ui/displaybase.cpp b/tizen/src/ui/displaybase.cpp index 385a5d0749..3772ae7675 100644 --- a/tizen/src/ui/displaybase.cpp +++ b/tizen/src/ui/displaybase.cpp @@ -84,6 +84,7 @@ void DisplayBase::startGuideImg() gLabel = new QLabel(win); gLabel->setAttribute(Qt::WA_DeleteOnClose); + gLabel->setStyleSheet("background-color: black"); *gPxmImg = QPixmap::fromImage(*gImg); *gPxmImg = gPxmImg->scaled(rWidth, rHeight, Qt::KeepAspectRatio, Qt::SmoothTransformation);