Skip to content

Commit

Permalink
Changelog updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Neutralizer committed Feb 6, 2019
1 parent e4deac6 commit 567167c
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
* Closing the window now closes camera and unpresses keys (main window only)
* Added fps limiter - set to 30 fps
* Bug fix - now you can't add keys to the table that don't have location
* Bug fix -
* Bug fix - update button can now update without selecting location

### 0.0.5 - 05.02.2019
* Bug fix - saving to prop file now works as intended
* Unique key in properties file now allows for duplicate keys
* Unique key in properties file now allows for duplicate keys

### 0.0.4 - 27.01.2019
* Added Big feature - table to show and modify virtual key regions with ease
Expand Down
4 changes: 0 additions & 4 deletions src/main/java/interfacePanel/panel/KeyTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ public void mouseClicked(MouseEvent e) {
int x = e.getX();
int y = e.getY();

// TODO set only if point within range
try {
roi.isSizeWithinCameraRange(x, y, 40, 40);
clicked = new java.awt.Point(x, y);
Expand Down Expand Up @@ -254,13 +253,10 @@ public void mouseClicked(MouseEvent e) {
// i = the index of the selected row
int i = table.getSelectedRow();
if (i >= 0) {
// keyText.setText(model.getValueAt(i, 0).toString());
comboBoxKeyName.setSelectedItem(model.getValueAt(i, 0));
if (model.getValueAt(i, 1) != null) {
locText.setText(model.getValueAt(i, 1).toString());
}
// typeText.setText(model.getValueAt(i, 2).toString());//TODO check if next
// works
comboBoxKeyType.setSelectedItem(model.getValueAt(i, 2));
}
}
Expand Down
Binary file modified target/classes/interfacePanel/panel/KeyTable$1.class
Binary file not shown.
Binary file modified target/classes/interfacePanel/panel/KeyTable$2.class
Binary file not shown.
Binary file modified target/classes/interfacePanel/panel/KeyTable$3.class
Binary file not shown.
Binary file modified target/classes/interfacePanel/panel/KeyTable$4.class
Binary file not shown.
Binary file modified target/classes/interfacePanel/panel/KeyTable$5.class
Binary file not shown.
Binary file modified target/classes/interfacePanel/panel/KeyTable$6.class
Binary file not shown.
Binary file modified target/classes/interfacePanel/panel/KeyTable$7.class
Binary file not shown.
Binary file modified target/classes/interfacePanel/panel/KeyTable.class
Binary file not shown.

0 comments on commit 567167c

Please sign in to comment.