Skip to content

Commit

Permalink
Change updater order for MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgio committed Jun 7, 2021
1 parent c42c64b commit e420ff6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/chorusmc/chorus/views/UpdaterView.kt
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ class UpdaterView : View(
label.text = translate("updater.filetype")
val windows = Button("Windows") // .exe
val linux = Button("Linux") // .jar
val macOs = Button("MacOS") // .zip
val macOs = Button("MacOS") // .app.zip
hbox.children.setAll(windows, macOs, linux)
return arrayOf(windows, linux, macOs)
return arrayOf(macOs, windows, linux) // Alphabetical order
}

fun setDownloading(version: String) {
Expand Down

0 comments on commit e420ff6

Please sign in to comment.