From 1723fbde1b1945d893a5da11b7883724eb1963e7 Mon Sep 17 00:00:00 2001 From: omsuneri <142336291+omsuneri@users.noreply.github.com> Date: Sun, 13 Oct 2024 03:23:21 +0530 Subject: [PATCH] FIXES ISSUE #4025 Issue with refreshing Search Bar in the pallete menu By these changes now the search widget and the palette menu opens simultaneously. --- js/palette.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/palette.js b/js/palette.js index a3a92d1f26..24d56578ce 100644 --- a/js/palette.js +++ b/js/palette.js @@ -330,8 +330,8 @@ class Palettes { if (this.mobile) { return; } - - this.activity.hideSearchWidget(true); + // In order to open the search widget and palette menu simulataneously + // this.activity.hideSearchWidget(true); this.dict[name].showMenu(true); this.activePalette = name; // used to delete plugins }