From a898a6b18a90c9508fd14bf53a35f1932ca0a813 Mon Sep 17 00:00:00 2001 From: Karl Woditsch Date: Thu, 21 Nov 2013 01:01:45 +0100 Subject: [PATCH] Fix ariane not reset on new exploration --- BigBrother-Gui/src/bigbrother/gui/BigBrotherGuiController.java | 1 + 1 file changed, 1 insertion(+) diff --git a/BigBrother-Gui/src/bigbrother/gui/BigBrotherGuiController.java b/BigBrother-Gui/src/bigbrother/gui/BigBrotherGuiController.java index 8ab63d3..43ee2ef 100644 --- a/BigBrother-Gui/src/bigbrother/gui/BigBrotherGuiController.java +++ b/BigBrother-Gui/src/bigbrother/gui/BigBrotherGuiController.java @@ -365,6 +365,7 @@ private void cleanAriane(){ * Clear the tree chart view. */ public void unloadTreeChart(){ + this.cleanAriane(); this.scrollPane.setContent(new Pane()); } }