From c374e6fb108fec5a3081a6bcbed92b7fbb67911f Mon Sep 17 00:00:00 2001 From: Wim Brand Date: Wed, 17 Jul 2019 23:29:44 +0200 Subject: [PATCH] Make min screen size larger --- res/static/script/Viewer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/static/script/Viewer.js b/res/static/script/Viewer.js index 13164a4..80fad41 100644 --- a/res/static/script/Viewer.js +++ b/res/static/script/Viewer.js @@ -14,7 +14,7 @@ var Viewer = { } // On small screens the toolbar takes too much space, so it collapses automatically - if($("#filepreview").width() > 400 && !Toolbar.visible){ + if($("#filepreview").width() > 500 && !Toolbar.visible){ Toolbar.toggle(); }