From 2e95ca1c58686909414ac85b72ad2156e3aa9c99 Mon Sep 17 00:00:00 2001 From: IgorA100 Date: Thu, 23 Jul 2026 00:42:50 +0300 Subject: [PATCH 1/4] Do not hide "#mfbpanel" for filter=inline mode, since this panel, in addition to the filter, has other necessary controls on the Watch page --- web/skins/classic/views/watch.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/skins/classic/views/watch.php b/web/skins/classic/views/watch.php index a47fc93b0..5f0aed6a2 100644 --- a/web/skins/classic/views/watch.php +++ b/web/skins/classic/views/watch.php @@ -231,7 +231,9 @@ echo getNavBarHTML() ?> // In inline mode this flip icon is the only control that hides/shows the // top filter panel. In sidebar mode the panel lives in the sidebar // extruder, which has its own show/hide control, so the icon is omitted. - if ($filter_inline) { + // IgorA100: No, the above statement is incorrect. #mfbpanel contains not only filters but also other information that is not transferred to the left sidebar. + //if ($filter_inline) { + if (1) { $html .= ' Date: Sat, 25 Jul 2026 01:31:51 +0300 Subject: [PATCH 2/4] Update montage.php --- web/skins/classic/views/montage.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/skins/classic/views/montage.php b/web/skins/classic/views/montage.php index c32dcee8d..b73818a17 100644 --- a/web/skins/classic/views/montage.php +++ b/web/skins/classic/views/montage.php @@ -254,7 +254,9 @@ echo getNavBarHTML(); // In inline mode this flip icon is the only control that hides/shows the // top filter panel. In sidebar mode the panel lives in the sidebar // extruder, which has its own show/hide control, so the icon is omitted. - if ($filter_inline) { + //if ($filter_inline) { + // IgorA100: No, the above statement is incorrect. #mfbpanel contains not only filters but also other information that is not transferred to the left sidebar. + if (1) { $html .= ' Date: Sun, 26 Jul 2026 23:56:22 +0300 Subject: [PATCH 3/4] Code optimization (watch.php) --- web/skins/classic/views/watch.php | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/web/skins/classic/views/watch.php b/web/skins/classic/views/watch.php index 5f0aed6a2..d6abde522 100644 --- a/web/skins/classic/views/watch.php +++ b/web/skins/classic/views/watch.php @@ -227,21 +227,13 @@ echo getNavBarHTML() ?>