From 9d2bdea8d94091c2263e41b21dfefd31d7191144 Mon Sep 17 00:00:00 2001 From: Eduardo Gonzalez Date: Fri, 27 Jul 2012 20:51:29 +0900 Subject: [PATCH] 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. --- AppKit/CPWindow/_CPBorderlessBridgeWindowView.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPWindow/_CPBorderlessBridgeWindowView.j b/AppKit/CPWindow/_CPBorderlessBridgeWindowView.j index 24faf9ba8..05959e4b5 100644 --- a/AppKit/CPWindow/_CPBorderlessBridgeWindowView.j +++ b/AppKit/CPWindow/_CPBorderlessBridgeWindowView.j @@ -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); }