Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Unified Diff: debugger/QT/SkRasterWidget.cpp

Issue 816363002: Make debugger raster window background black (Closed) Base URL: https://skia.googlesource.com/skia.git@wrap-render-target-uninit-read
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: debugger/QT/SkRasterWidget.cpp
diff --git a/debugger/QT/SkRasterWidget.cpp b/debugger/QT/SkRasterWidget.cpp
index ad05d3966f75a49500f8e37cf1c81f7e93f6e254..7de5ac41c51803e6dbd9062c9c7f8d350b198198 100644
--- a/debugger/QT/SkRasterWidget.cpp
+++ b/debugger/QT/SkRasterWidget.cpp
@@ -14,7 +14,7 @@ SkRasterWidget::SkRasterWidget(SkDebugger *debugger) : QWidget() {
fDevice = new SkBitmapDevice(fBitmap);
fDebugger = debugger;
fCanvas = new SkCanvas(fDevice);
- this->setStyleSheet("QWidget {background-color: white; border: 1px solid #cccccc;}");
+ this->setStyleSheet("QWidget {background-color: black; border: 1px solid #cccccc;}");
}
SkRasterWidget::~SkRasterWidget() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698