Skip to content

Commit

Permalink
Cosmetics: Tranform icon and annotation panel width
Browse files Browse the repository at this point in the history
  • Loading branch information
berndmoos committed Jul 19, 2023
1 parent 8b04492 commit 0fa06ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified src/org/exmaralda/partitureditor/partiture/Icons/Transform.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -1913,8 +1913,8 @@ public void setSettings(String usernode){
keyboardDialog.getKeyboardPanel().setKeySize(settings.getInt("VIRTUAL-KEYBOARD-KEYSIZE", 100));
//keyboardDialog.pack();

// Annotation Panel
int w2 = settings.getInt("ANNOTATION-PANEL-WIDTH", annotationDialog.getWidth());
// Annotation Panel
int w2 = settings.getInt("ANNOTATION-PANEL-WIDTH", Math.max(annotationDialog.getWidth(), 700));
int h2 = settings.getInt("ANNOTATION-PANEL-HEIGHT", annotationDialog.getHeight());
annotationDialog.setPreferredSize(new java.awt.Dimension(w2,h2));
annotationDialog.setSize(new java.awt.Dimension(w2,h2));
Expand Down

0 comments on commit 0fa06ff

Please sign in to comment.