Skip to content

Commit

Permalink
fix(gui): fix broken FileDialog by using legacy sort (#1628)(PR #1630)
Browse files Browse the repository at this point in the history
  • Loading branch information
xxr0ss committed Aug 11, 2022
1 parent 57b9c1d commit 7e0fafb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jadx-gui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ application {
mainClass.set('jadx.gui.JadxGUI')
// The option -XX:+UseG1GC is only relevant for Java 8. Starting with Java 9 G1GC is already the default GC
applicationDefaultJvmArgs = ['-Xms128M', '-XX:MaxRAMPercentage=70.0', '-XX:+UseG1GC',
'-Dawt.useSystemAAFontSettings=lcd', '-Dswing.aatext=true']
'-Dawt.useSystemAAFontSettings=lcd', '-Dswing.aatext=true',
'-Djava.util.Arrays.useLegacyMergeSort=true']
}

applicationDistribution.with {
Expand Down

0 comments on commit 7e0fafb

Please sign in to comment.