corefx - update to clear right border pane when joining a session
This commit is contained in:
parent
9a2625e502
commit
56f9e6ec8a
1 changed files with 4 additions and 1 deletions
|
@ -135,7 +135,10 @@ public class Controller implements Initializable {
|
|||
networkGraph.reset();
|
||||
|
||||
// clear out any previously set information
|
||||
bottom.getChildren().remove(mobilityPlayer);
|
||||
Platform.runLater(() -> {
|
||||
bottom.getChildren().remove(mobilityPlayer);
|
||||
borderPane.setRight(null);
|
||||
});
|
||||
mobilityDialog.setNode(null);
|
||||
|
||||
// get session to join
|
||||
|
|
Loading…
Reference in a new issue