From 892652b9cb2b32e50ce3291fb985ed855c9abaad Mon Sep 17 00:00:00 2001 From: Jens Lody Date: Sun, 14 Aug 2016 14:11:36 +0200 Subject: [PATCH] Fix issue on older systems, where the "N_"-prefix to a javascript-string is not known. --- src/extension.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/extension.js b/src/extension.js index a1f89f2..0f6b923 100644 --- a/src/extension.js +++ b/src/extension.js @@ -429,8 +429,7 @@ let extensionUpdateShowingNotification = function() { tl = bl; tr = br; } - // add N before underscore (_), to prevent translation - this._notification._table.set_style(N_('border-radius: %dpx %dpx %dpx %dpx;').format(tl, tr, bl, br)); + this._notification._table.set_style('border-radius: '+tl+'px '+tr+'px '+bl+'px '+br+'px;'); } } // JRL changes end