From b9a5b8236b7106ada4cf333743e10552522c6540 Mon Sep 17 00:00:00 2001 From: Alexandre Deckner Date: Wed, 11 Jun 2008 20:51:56 +0000 Subject: [PATCH] - Changed BColorControl cellsize to account for the fixes in BColorControl. A rounding error gave the right appearance. see r23671 and r23680. Also, we might want to check the minimum cellsize in R5 and use the same for compatibility. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25931 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/terminal/AppearPrefView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/terminal/AppearPrefView.cpp b/src/apps/terminal/AppearPrefView.cpp index be1dfa8919..d6b4a6421d 100644 --- a/src/apps/terminal/AppearPrefView.cpp +++ b/src/apps/terminal/AppearPrefView.cpp @@ -76,7 +76,7 @@ AppearancePrefView::AppearancePrefView(BRect frame, const char *name, AddChild(fColorField); fColorControl = SetupColorControl(BPoint(r.left, r.bottom + 10), - B_CELLS_32x8, 6, MSG_COLOR_CHANGED); + B_CELLS_32x8, 7.0, MSG_COLOR_CHANGED); fColorControl->SetValue(PrefHandler::Default()->getRGB(PREF_TEXT_FORE_COLOR)); }