From 2259002bdb5f2da69b70b922327e3276cc8201c2 Mon Sep 17 00:00:00 2001 From: Alexandre Deckner Date: Wed, 15 Oct 2008 17:45:20 +0000 Subject: [PATCH] * Augmented the cellSize of the BColorControl to 8, it was previously clamped to that value anyway, but now BColorControl actually respects this setting. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28149 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/preferences/appearance/APRView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/preferences/appearance/APRView.cpp b/src/preferences/appearance/APRView.cpp index e9a28f6e95..ef83864763 100644 --- a/src/preferences/appearance/APRView.cpp +++ b/src/preferences/appearance/APRView.cpp @@ -110,7 +110,7 @@ APRView::APRView(const BRect &frame, const char *name, int32 resize, int32 flags AddChild(fColorWell); fPicker = new BColorControl(BPoint(wellrect.right + kBorderSpace, wellrect.top), - B_CELLS_32x8, 5.0, "fPicker", new BMessage(UPDATE_COLOR)); + B_CELLS_32x8, 8.0, "fPicker", new BMessage(UPDATE_COLOR)); fPicker->SetResizingMode(B_FOLLOW_LEFT | B_FOLLOW_BOTTOM); AddChild(fPicker);