From 42b5f4b3aeca771faba2938363e97a107e7057b8 Mon Sep 17 00:00:00 2001 From: rolux Date: Sat, 22 Dec 2012 02:18:52 +0100 Subject: [PATCH] fix #1185 (navigation view sort select has wrong size) --- static/js/pandora/sortSelect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/pandora/sortSelect.js b/static/js/pandora/sortSelect.js index 1f7eaef1..e055fa2b 100644 --- a/static/js/pandora/sortSelect.js +++ b/static/js/pandora/sortSelect.js @@ -26,7 +26,7 @@ pandora.ui.sortSelect = function(isNavigationView) { id: 'sortSelect', items: items, value: pandora.user.ui[sortKey][0].key, - width: isNavigationView ? 128 : 144 + width: isNavigationView ? 116 + Ox.UI.SCROLLBAR_SIZE : 144 }) .css({ float: isNavigationView ? 'right' : 'left',