Fix default alignment on BCheckBox.

Was most readily noticeable in WebPositive's Find pane, where the
CheckBox was incorrectly top-aligned. Thanks to Humdinger for reporting.
This commit is contained in:
Rene Gollent
2013-09-11 18:23:07 -04:00
parent 78e450554e
commit 426f721b81
+1 -1
View File
@@ -468,7 +468,7 @@ BAlignment
BCheckBox::LayoutAlignment()
{
return BLayoutUtils::ComposeAlignment(ExplicitAlignment(),
BAlignment(B_ALIGN_LEFT, B_ALIGN_VERTICAL_UNSET));
BAlignment(B_ALIGN_LEFT, B_ALIGN_VERTICAL_CENTER));
}