Change group settings only if the user clicks on OK

This commit is contained in:
0xb00bface 2021-08-27 19:04:31 +02:00
parent f577983305
commit 6dd2779cf4
2 changed files with 6 additions and 1 deletions

View File

@ -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 :))

View File

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