From e0e58a421ed377e2d0aad46c234964eb9dd2ba20 Mon Sep 17 00:00:00 2001 From: Atul Aggarwal Date: Mon, 28 Nov 2011 01:44:58 +0530 Subject: [PATCH] Bug 598339 - Simplying GPU Accelerated Window message in case no window is GPU Accelerated. r=joedrew --- toolkit/content/aboutSupport.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toolkit/content/aboutSupport.js b/toolkit/content/aboutSupport.js index c610b95f73a..89f1e10fade 100644 --- a/toolkit/content/aboutSupport.js +++ b/toolkit/content/aboutSupport.js @@ -354,9 +354,9 @@ function populateGraphicsSection() { } } - let msg = acceleratedWindows + "/" + totalWindows; + let msg = acceleratedWindows; if (acceleratedWindows) { - msg += " " + mgrType; + msg += "/" + totalWindows + " " + mgrType; } else { #ifdef XP_WIN var feature = gfxInfo.FEATURE_DIRECT3D_9_LAYERS;