Skip to content

Commit

Permalink
another fix for tiny kit editor on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotlinski committed Sep 19, 2024
1 parent 1313022 commit f2286a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Fixed
- Kit Editor: tiny window size on Linux.

## [1.13.2] - 2024-09-18
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/kitEditor/KitEditor.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ public KitEditor(JFrame parent, Document document, Listener listener) {
jbInit();
addMenu();
setListeners();
setVisible(true);
setTitle("Kit Editor");
createSamplesFromRom();
updateRomView();
Expand Down Expand Up @@ -107,6 +106,7 @@ public void windowClosing(WindowEvent e) {
samplePicker.grabFocus();

setResizable(false);
setVisible(true);
}

private void addEnterHandler(JSpinner spinner) {
Expand Down

0 comments on commit f2286a3

Please sign in to comment.