From 47f94071278b0945f1258df4158f9aad5ec0df0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pauli=20J=C3=A4rvinen?= Date: Thu, 13 Nov 2025 22:13:02 +0200 Subject: [PATCH] fix(core): legacy app navigation snapper width on RTL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After ec9e283e there was still such a problem with the legacy app navigation snapper that its width was only 266 px on the RTL layout instead of the normal 300 px. The 266 px is the default width of Snap.js module. While the left side snapper width is configured with the property maxPosition, the right side snapper is configured by passing a negative value for the property minPosition. Signed-off-by: Pauli Järvinen --- core/src/init.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/init.js b/core/src/init.js index 1f4e1658076..8ade1dae983 100644 --- a/core/src/init.js +++ b/core/src/init.js @@ -125,6 +125,7 @@ export function initCore() { element: document.getElementById('app-content'), disable: SNAPPER_CLOSE, maxPosition: 300, // $navigation-width + minPosition: -300, // $navigation-width for RTL minDragDistance: 100, })