From 914fbafad334c675fb5dfe8f60b394554b3c0e06 Mon Sep 17 00:00:00 2001 From: "A. Reit" Date: Tue, 16 Jan 2024 19:19:08 +0100 Subject: [PATCH] profiler: Fix profiling results being hidden This fixes #21590 --- spyder/plugins/profiler/widgets/main_widget.py | 1 + 1 file changed, 1 insertion(+) diff --git a/spyder/plugins/profiler/widgets/main_widget.py b/spyder/plugins/profiler/widgets/main_widget.py index b106786ea48..67fadcbd076 100644 --- a/spyder/plugins/profiler/widgets/main_widget.py +++ b/spyder/plugins/profiler/widgets/main_widget.py @@ -618,6 +618,7 @@ def show_data(self, justanalyzed=False): self.datelabel.setText(_('Sorting data, please wait...')) QApplication.processEvents() + self.stacked_widget.setCurrentWidget(self.datatree) self.datatree.load_data(self.DATAPATH) self.datatree.show_tree()