From f1bf19b0ac5cdd4af0a11a405bfe58a125210ff3 Mon Sep 17 00:00:00 2001 From: tconfrey Date: Thu, 17 Oct 2024 17:06:23 -0400 Subject: [PATCH] bug fix - if the result of a search had been hidden the node was not being redisplayed leaving horizontal scrolling in place --- app/BTAppNode.js | 1 + versions/1.0.3/app/BTAppNode.js | 1 + 2 files changed, 2 insertions(+) diff --git a/app/BTAppNode.js b/app/BTAppNode.js index cd4eb57..809d56b 100644 --- a/app/BTAppNode.js +++ b/app/BTAppNode.js @@ -375,6 +375,7 @@ class BTAppNode extends BTNode { if (this.shownForSearch) { const disp = this.getDisplayNode(); if (this.parentId) AllNodes[this.parentId].unshowForSearch(); + this.redisplay(); // reset any search horiz scrolling $(disp).hide(); this.shownForSearch = false; } diff --git a/versions/1.0.3/app/BTAppNode.js b/versions/1.0.3/app/BTAppNode.js index cd4eb57..809d56b 100644 --- a/versions/1.0.3/app/BTAppNode.js +++ b/versions/1.0.3/app/BTAppNode.js @@ -375,6 +375,7 @@ class BTAppNode extends BTNode { if (this.shownForSearch) { const disp = this.getDisplayNode(); if (this.parentId) AllNodes[this.parentId].unshowForSearch(); + this.redisplay(); // reset any search horiz scrolling $(disp).hide(); this.shownForSearch = false; }