Merge lp:~tapaal-contributor/tapaal/batch-remove-button-active-1780125 into lp:tapaal

Proposed by Peter Haahr Taankvist
Status: Merged
Approved by: Jiri Srba
Approved revision: 979
Merged at revision: 981
Proposed branch: lp:~tapaal-contributor/tapaal/batch-remove-button-active-1780125
Merge into: lp:tapaal
Diff against target: 15 lines (+2/-0)
1 file modified
src/dk/aau/cs/gui/BatchProcessingDialog.java (+2/-0)
To merge this branch: bzr merge lp:~tapaal-contributor/tapaal/batch-remove-button-active-1780125
Reviewer Review Type Date Requested Status
Jiri Srba Approve
Review via email: mp+362208@code.launchpad.net

Description of the change

added a line which made sure that the remove button remained active after processing.

To post a comment you must log in.
Revision history for this message
Jiri Srba (srba) wrote :

Works. Merging to trunk.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'src/dk/aau/cs/gui/BatchProcessingDialog.java'
--- src/dk/aau/cs/gui/BatchProcessingDialog.java 2018-07-13 18:08:43 +0000
+++ src/dk/aau/cs/gui/BatchProcessingDialog.java 2019-01-24 19:05:39 +0000
@@ -1458,9 +1458,11 @@
1458 if (listModel.size() > 0) {1458 if (listModel.size() > 0) {
1459 clearFilesButton.setEnabled(true);1459 clearFilesButton.setEnabled(true);
1460 startButton.setEnabled(true);1460 startButton.setEnabled(true);
1461 removeFileButton.setEnabled(true);
1461 } else {1462 } else {
1462 clearFilesButton.setEnabled(false);1463 clearFilesButton.setEnabled(false);
1463 startButton.setEnabled(false);1464 startButton.setEnabled(false);
1465 removeFileButton.setEnabled(false);
1464 }1466 }
14651467
1466 if (tableModel.getRowCount() > 0)1468 if (tableModel.getRowCount() > 0)

Subscribers

People subscribed via source and target branches