Change group settings only if the user clicks on OK
This commit is contained in:
parent
f577983305
commit
6dd2779cf4
|
@ -1,3 +1,8 @@
|
||||||
|
4.5.2
|
||||||
|
========================
|
||||||
|
* Change group settings only if the user clicks on OK
|
||||||
|
* Start recording only if the user clicked on OK in the record until dialog
|
||||||
|
|
||||||
4.5.1
|
4.5.1
|
||||||
========================
|
========================
|
||||||
* Fixed perfromance problem in recorded models tabs (I think :))
|
* Fixed perfromance problem in recorded models tabs (I think :))
|
||||||
|
|
|
@ -106,7 +106,7 @@ public class EditGroupAction {
|
||||||
var add = createAddButton();
|
var add = createAddButton();
|
||||||
var remove = createRemoveButton();
|
var remove = createRemoveButton();
|
||||||
var buttons = new VBox(3, up, down, add, remove);
|
var buttons = new VBox(3, up, down, add, remove);
|
||||||
urlList = FXCollections.observableList(modelGroup.getModelUrls());
|
urlList = FXCollections.observableList(urls);
|
||||||
urlList.addListener((ListChangeListener<String>) change -> urls = new ArrayList<>(urlList));
|
urlList.addListener((ListChangeListener<String>) change -> urls = new ArrayList<>(urlList));
|
||||||
urlListView = new ListView<>(urlList);
|
urlListView = new ListView<>(urlList);
|
||||||
urlListView.setPrefWidth(600);
|
urlListView.setPrefWidth(600);
|
||||||
|
|
Loading…
Reference in New Issue