From bc5ca47de67ee9468fdb786e6d45a32488b295c2 Mon Sep 17 00:00:00 2001 From: domonik Date: Mon, 19 Aug 2024 17:23:16 +0200 Subject: [PATCH] fixes disabled 3D button --- RAPDOR/visualize/callbacks/plotCallbacks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RAPDOR/visualize/callbacks/plotCallbacks.py b/RAPDOR/visualize/callbacks/plotCallbacks.py index 6bd2b03..6ef4dda 100644 --- a/RAPDOR/visualize/callbacks/plotCallbacks.py +++ b/RAPDOR/visualize/callbacks/plotCallbacks.py @@ -368,9 +368,9 @@ def update_range_slider(cutoff_type, plot_type, rapdordata: RAPDORData): def disable_lfc_and_3d(tdplot, plot_type): if plot_type == "Bubble Plot": if tdplot: - return False, True, dash.no_update + return False, True, False else: - return dash.no_update, False, dash.no_update + return dash.no_update, False, False else: return dash.no_update, False, True