From 9f0dcdea1049a59cd1fb4f0872edee1b7a87a4e6 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Sat, 28 May 2022 11:30:32 +1000 Subject: Fix tree-trimming to not discard certain nodes Was trimming off nodes without an image/desc/reduced_tree_presence, including those with a descdendant that has them. Was using a linked-image association to prevent this, but this wasn't reliable. --- src/App.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/App.vue b/src/App.vue index 9fda4de..6f8f7a8 100644 --- a/src/App.vue +++ b/src/App.vue @@ -65,7 +65,7 @@ const defaultUiOpts = { shadowFocused: '0 0 1px 2px orange', infoIconSz: 18, //px infoIconMargin: 2, //px - tipThresholds: [[1, 'greenyellow'], [30, 'orange'], [100, 'red']], + tipThresholds: [[1, 'greenyellow'], [100, 'orange'], [1000, 'red']], headerColor: '#fafaf9', // For leaf tiles leafTilePadding: 4, //px @@ -770,15 +770,15 @@ export default defineComponent({ + + + - - - -- cgit v1.2.3