From 395ec3291e251f945293b809942c0333ff6ff89e Mon Sep 17 00:00:00 2001 From: SethBurkart123 Date: Fri, 14 Feb 2025 17:07:45 +1100 Subject: [PATCH] fix: custom sidebar layouts not applying on page load #205 --- src/SEQTA.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SEQTA.ts b/src/SEQTA.ts index 621bac5c..91e568b9 100644 --- a/src/SEQTA.ts +++ b/src/SEQTA.ts @@ -171,6 +171,7 @@ export function OpenWhatsNewPopup() {
  • Fixed timetable quickbar arrow receiving the wrong colour
  • Auto-applied selected theme after saving in theme creator
  • Fixed a bug where timetable was clipped at certain times
  • +
  • Fixed custom sidebar layouts not applying on page load
  • Improved spacing of the message editor buttons
  • Added HEX colour input to the theme creator
  • Fixed theme application in the creator
  • @@ -2792,9 +2793,8 @@ export async function SendNewsPage() { async function CheckForMenuList() { try { - if (document.getElementById('menu')?.firstChild) { - ObserveMenuItemPosition() - } + await waitForElm('#menu > ul'); + ObserveMenuItemPosition(); } catch (error) { return; }