* 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
This commit is contained in:
Alexandre Deckner 2008-10-15 17:45:20 +00:00
parent e5b1c10e58
commit 2259002bdb
1 changed files with 1 additions and 1 deletions

View File

@ -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);