diff --git a/control/frontend/src/routes/DisplayView.svelte b/control/frontend/src/routes/DisplayView.svelte index d37356c..3fdfba8 100755 --- a/control/frontend/src/routes/DisplayView.svelte +++ b/control/frontend/src/routes/DisplayView.svelte @@ -13,6 +13,7 @@ change_height, current_height, dnd_flip_duration_ms, + get_selectable_color_classes, is_display_drag, is_group_drag, next_height_step_size, @@ -57,7 +58,7 @@ $effect(() => { const d = $display_groups; const sdi = $selected_display_ids; - all_groups_selected = liveQuery(() => all_selected(d || [], sdi)); + all_groups_selected = liveQuery(() => d.length !== 0 && all_selected(d || [], sdi)); }); let last_pinned_pane_size: number = 45; @@ -217,11 +218,22 @@
+ +