From 294490f77bf88be072fa0bf8dbab29f330ecc9cd Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Tue, 15 Feb 2011 20:55:23 +0100 Subject: [PATCH] altTab: Properly query the themenode's color when painting the arrows --- js/ui/altTab.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/js/ui/altTab.js b/js/ui/altTab.js index 62df018ad..b675be759 100644 --- a/js/ui/altTab.js +++ b/js/ui/altTab.js @@ -1103,10 +1103,8 @@ ThumbnailList.prototype = { function _drawArrow(area, side) { let themeNode = area.get_theme_node(); - let borderColor = new Clutter.Color(); - themeNode.get_border_color(side, borderColor); - let bodyColor = new Clutter.Color(); - themeNode.get_foreground_color(bodyColor); + let borderColor = themeNode.get_border_color(side); + let bodyColor = themeNode.get_foreground_color(); let [width, height] = area.get_surface_size (); let cr = area.get_context();