SpaceAnalyzer: Stop treating selecting a node as a path change

This served no obvious purpose, but did make the breadcrumb bar change
confusingly.
This commit is contained in:
Sam Atkins 2023-02-03 16:29:21 +00:00 committed by Andreas Kling
parent ad92b16887
commit 534039fdf5

View file

@ -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();
}
}