From f8056cd9a442c0c1c069c0234725ae1ce7f77903 Mon Sep 17 00:00:00 2001 From: John Scipione Date: Wed, 20 Jul 2016 10:47:46 -0700 Subject: [PATCH] DeskCalc: Set base color to panel bg color by default ...in unused ctor --- src/apps/deskcalc/CalcView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/deskcalc/CalcView.cpp b/src/apps/deskcalc/CalcView.cpp index aa9f90e68e..0fdc37bfbb 100644 --- a/src/apps/deskcalc/CalcView.cpp +++ b/src/apps/deskcalc/CalcView.cpp @@ -164,7 +164,7 @@ CalcView::CalcView(BMessage* archive) fColumns(5), fRows(4), - fBaseColor((rgb_color){ 128, 128, 128, 255 }), + fBaseColor(ui_color(B_PANEL_BACKGROUND_COLOR)), fExpressionBGColor((rgb_color){ 0, 0, 0, 255 }), fWidth(1),