From c33dfc270f6bbb684164fcc98073c5cd8680b066 Mon Sep 17 00:00:00 2001 From: John Scipione Date: Fri, 31 May 2013 20:53:29 -0400 Subject: [PATCH] Background: Increase the cell size of the color control ... to 8.0 matching the value used in the Appearance preflet. This cell sizes makes the ramps fit nicely with the Red Green and Blue text boxes at the default 12pt font size. --- src/preferences/backgrounds/BackgroundsView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/preferences/backgrounds/BackgroundsView.cpp b/src/preferences/backgrounds/BackgroundsView.cpp index 116fa0de5f..f57f84059a 100644 --- a/src/preferences/backgrounds/BackgroundsView.cpp +++ b/src/preferences/backgrounds/BackgroundsView.cpp @@ -184,7 +184,7 @@ BackgroundsView::BackgroundsView() new BMessage(kMsgIconLabelOutline)); fIconLabelOutline->SetValue(B_CONTROL_OFF); - fPicker = new BColorControl(BPoint(0, 0), B_CELLS_32x8, 7.0, "Picker", + fPicker = new BColorControl(BPoint(0, 0), B_CELLS_32x8, 8.0, "Picker", new BMessage(kMsgUpdateColor)); rightbox->AddChild(BLayoutBuilder::Group<>(B_VERTICAL, B_USE_DEFAULT_SPACING)