Skip to content

Commit

Permalink
Fix default alignment on BCheckBox.
Browse files Browse the repository at this point in the history
Was most readily noticeable in WebPositive's Find pane, where the
CheckBox was incorrectly top-aligned. Thanks to Humdinger for reporting.
  • Loading branch information
anevilyak committed Sep 11, 2013
1 parent 78e4505 commit 426f721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kits/interface/CheckBox.cpp
Expand Up @@ -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));
}


Expand Down

0 comments on commit 426f721

Please sign in to comment.