Nux

Code review comment for lp:~unity-team/nux/nux-fix-708020

Revision history for this message
Tim Penhey (thumper) wrote :

> void Layout::SetPadding(int top_bottom_padding, int left_right_padding)
> {
> top_padding_ = top_bottom_padding < 0 ? 0 : top_bottom_padding;
> bottom_padding_ = top_bottom_padding;

Surely that should be:
    bottom_padding_ = top_padding_;

review: Approve

« Back to merge proposal