Removed tailing comma from CPColorWithImages call.

The extra comma causes IE to think it was passed an array with 4
values and causes CPColorWithImages to return a NinePartImage even
though it only has three parts.
This commit is contained in:
Eduardo Gonzalez
2012-07-27 20:51:29 +09:00
parent bd0114aa06
commit 9d2bdea8d9
@@ -38,7 +38,7 @@ var _CPToolbarViewBackgroundColor = nil;
_CPToolbarViewBackgroundColor = CPColorWithImages([
["_CPToolbarView/toolbar-background-top.png", 1, 1, bundle],
["_CPToolbarView/toolbar-background-center.png", 1, 57.0, bundle],
["_CPToolbarView/toolbar-background-bottom.png", 1, 1, bundle],
["_CPToolbarView/toolbar-background-bottom.png", 1, 1, bundle]
], CPColorPatternIsVertical);
}