Style fix

Yes, I do need to change my glasses.
This commit is contained in:
François Revol 2011-12-07 02:49:43 +01:00
parent c0954dc661
commit 09a0999c68

View File

@ -981,13 +981,13 @@ BView* instantiate_deskbar_item()
float height = 16;
float rowHeight = floor((height - 1) / rows);
if(rowHeight < 1)
if (rowHeight < 1)
rowHeight = 1;
float columnWidth = floor((rowHeight - 1) * aspectRatio) + 1;
float width = columnWidth * columns + 1;
if(width > 129)
if (width > 129)
width = 129;
return new WorkspacesView(BRect (0, 0, width, height), false);