Skip to content

Commit

Permalink
Bug fix in statement filter
Browse files Browse the repository at this point in the history
  • Loading branch information
leifeld committed May 10, 2023
1 parent 7ec21b6 commit 9237905
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dna/src/main/java/dna/Dna.java
Expand Up @@ -28,7 +28,7 @@ public class Dna {
public static Logger logger;
public static Sql sql;
public static final String date = "2023-05-10";
public static final String version = "3.1.0.1";
public static final String version = "3.1.0.2";
public static final String operatingSystem = System.getProperty("os.name");
public static File workingDirectory = null;
public MainWindow mainWindow;
Expand Down
2 changes: 2 additions & 0 deletions dna/src/main/java/gui/MainWindow.java
Expand Up @@ -854,6 +854,7 @@ public void windowLostFocus(WindowEvent e) {
TableStatement s = popup.getTableStatement();
int modelRow = statementTableModel.getModelRowById(s.getId());
statementTableModel.updateCoderInRow(modelRow, s.getCoderId(), s.getCoderName(), s.getCoderColor());
statementTableModel.getRow(modelRow).setRoleValues(s.getRoleValues());
}
});
}
Expand Down Expand Up @@ -883,6 +884,7 @@ public void windowClosing(WindowEvent e) {
TableStatement s = popup.getTableStatement();
int modelRow = statementTableModel.getModelRowById(s.getId());
statementTableModel.updateCoderInRow(modelRow, s.getCoderId(), s.getCoderName(), s.getCoderColor());
statementTableModel.getRow(modelRow).setRoleValues(s.getRoleValues());
}
}
});
Expand Down

0 comments on commit 9237905

Please sign in to comment.