From cebfedfdd4fbb615f2b4dfa533cefb07a9619596 Mon Sep 17 00:00:00 2001 From: j Date: Tue, 28 Apr 2020 21:26:22 +0200 Subject: [PATCH] keep a minimum of 8px --- source/UI/js/List/TableList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/UI/js/List/TableList.js b/source/UI/js/List/TableList.js index 63320f03..d72a7f06 100644 --- a/source/UI/js/List/TableList.js +++ b/source/UI/js/List/TableList.js @@ -206,7 +206,7 @@ Ox.TableList = function(options, self) { .addClass('OxHead') .css({ right: self.options.scrollbarVisible - ? Ox.UI.SCROLLBAR_SIZE + 'px' : 0 + ? Math.max(Ox.UI.SCROLLBAR_SIZE, 8) + 'px' : 0 }) .appendTo(that.$bar); that.$head.$content.addClass('OxTitles');