From f41f63c6a11338f75cae9ec4f294397c59aa3e27 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 18 Sep 2024 10:16:47 +0200 Subject: [PATCH] wait #7086 @0.25 --- js/libs/fluidbook/fluidbook.menu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/libs/fluidbook/fluidbook.menu.js b/js/libs/fluidbook/fluidbook.menu.js index b0f7813f..3d973e24 100644 --- a/js/libs/fluidbook/fluidbook.menu.js +++ b/js/libs/fluidbook/fluidbook.menu.js @@ -794,7 +794,7 @@ FluidbookMenu.prototype = { if (this.fluidbook.settings.chaptersColumns > 1) { w = this.fluidbook.settings.chaptersColMaxWidth * this.fluidbook.settings.chaptersColumns; } else { - w = Math.min(450, this.fluidbook.settings.chaptersColMaxWidth); + w = Math.max(300, this.fluidbook.settings.chaptersColMaxWidth); } fullscreen = (w >= ww * 0.9); if (fullscreen) { -- 2.39.5