Skip to content

Commit

Permalink
GUI bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbuzatto committed Oct 19, 2023
1 parent 111b4a6 commit 8f53d2d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<debug>false</debug>
</configuration>
</plugin>
</plugins>
</build>
</project>
4 changes: 4 additions & 0 deletions src/main/java/br/com/davidbuzatto/yaas/gui/MainWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -1053,6 +1053,10 @@ private void updateJifsUI() {
pdaJif.updateUIFlatLaf();
pdaJif.updateUI();
}
if ( jif instanceof TMInternalFrame tmJif ) {
tmJif.updateUIFlatLaf();
tmJif.updateUI();
}
}

}
Expand Down

0 comments on commit 8f53d2d

Please sign in to comment.