From c85f63be5e7b86bcbac3ebb0d96aae3d4cfb1d30 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 4 Apr 2020 23:00:15 -0400 Subject: [PATCH] Fix the grow/shrink buttons not updating the sidebar --- macrovision.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/macrovision.js b/macrovision.js index bc0f7231..e74a9f0b 100644 --- a/macrovision.js +++ b/macrovision.js @@ -1311,6 +1311,8 @@ function doSize() { const oldHeight = entity.views[entity.view].height; entity.views[entity.view].height = math.multiply(oldHeight, 1 + sizeDirection/20); entity.dirty = true; + updateEntityOptions(entity, entity.view); + updateViewOptions(entity, entity.view); updateSizes(true); sizeDirection *= 1.05; }