From 5ea802db8ec63e4cee2f98e313d394d183dddbd3 Mon Sep 17 00:00:00 2001 From: DianaXWiki Date: Wed, 18 Jun 2025 16:00:38 +0300 Subject: [PATCH] Fix for toolbar rendering issue #1831 --- www/common/common-ui-elements.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www/common/common-ui-elements.js b/www/common/common-ui-elements.js index 7ef91ce09..224af8fec 100644 --- a/www/common/common-ui-elements.js +++ b/www/common/common-ui-elements.js @@ -1310,6 +1310,10 @@ define([ if (appType !== 'code' && appType !== 'slide') { $(window).on('resize', updateToolbarVisibility); updateToolbarVisibility(); + // Small delay to ensure the toolbar layout has rendered before checking for wrapping (ex: profile medium screen size) + setTimeout(() => { + updateToolbarVisibility(); + }, 10); } return {