Added state column to tunnels table

pull/4/head
knaccc 5 years ago
parent 3e75fa165e
commit 1a0312cd6c

@ -115,7 +115,7 @@ public class Controller {
stage.setHeight(370);
}
else if(tunnelsTab.isSelected()) {
stage.setWidth(700);
stage.setWidth(900);
}
};
bandwidthTab.setOnSelectionChanged(tabSelectionEventHandler);
@ -163,6 +163,8 @@ public class Controller {
statusLabel.setText("Status: " + routerWrapper.getReachability().getMessage());
tunnelsTableView.refresh();
});
}
try { Thread.sleep(1000); } catch (InterruptedException e) {}

Loading…
Cancel
Save