Fix rect calculation.

Not sure what the intended height is though. 16 or 17?
This commit is contained in:
François Revol
2011-12-07 03:05:58 +01:00
parent 09a0999c68
commit 8408920712
+1 -1
View File
@@ -990,7 +990,7 @@ BView* instantiate_deskbar_item()
if (width > 129)
width = 129;
return new WorkspacesView(BRect (0, 0, width, height), false);
return new WorkspacesView(BRect (0, 0, width - 1, height - 1), false);
}