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
1=== modified file 'src/dk/aau/cs/gui/BatchProcessingDialog.java'
2--- src/dk/aau/cs/gui/BatchProcessingDialog.java 2018-07-13 18:08:43 +0000
3+++ src/dk/aau/cs/gui/BatchProcessingDialog.java 2019-01-24 19:05:39 +0000
4@@ -1458,9 +1458,11 @@
5 if (listModel.size() > 0) {
6 clearFilesButton.setEnabled(true);
7 startButton.setEnabled(true);
8+ removeFileButton.setEnabled(true);
9 } else {
10 clearFilesButton.setEnabled(false);
11 startButton.setEnabled(false);
12+ removeFileButton.setEnabled(false);
13 }
14
15 if (tableModel.getRowCount() > 0)

Subscribers

People subscribed via source and target branches