From 534039fdf5f9acfed10ef8cba11a76841777937e Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Fri, 3 Feb 2023 16:29:21 +0000 Subject: [PATCH] SpaceAnalyzer: Stop treating selecting a node as a path change This served no obvious purpose, but did make the breadcrumb bar change confusingly. --- Userland/Applications/SpaceAnalyzer/TreeMapWidget.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Userland/Applications/SpaceAnalyzer/TreeMapWidget.cpp b/Userland/Applications/SpaceAnalyzer/TreeMapWidget.cpp index f393e7be63..052bdae088 100644 --- a/Userland/Applications/SpaceAnalyzer/TreeMapWidget.cpp +++ b/Userland/Applications/SpaceAnalyzer/TreeMapWidget.cpp @@ -304,9 +304,6 @@ void TreeMapWidget::mousedown_event(GUI::MouseEvent& event) if (!path.is_empty()) { m_path_segments.shrink(m_viewpoint); m_path_segments.extend(path); - if (on_path_change) { - on_path_change(); - } update(); } }