mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
[ANY] Фикс флага (#395)
* [ANY] Фикс флага Он был добавлен в 1.13 * [ANY] Откакт мелкой правки по дизайну
This commit is contained in:
parent
1575190e74
commit
c2c085764b
2 changed files with 9 additions and 1 deletions
|
@ -29,6 +29,14 @@ .progress-bar {
|
|||
-fx-background-color: transparent;
|
||||
}
|
||||
|
||||
.progress-indicator {
|
||||
-fx-background-color: transparent;
|
||||
}
|
||||
|
||||
.progress-indicator .indicator {
|
||||
-fx-background-color: transparent;
|
||||
}
|
||||
|
||||
.progress-indicator:indeterminate *.segment {
|
||||
-fx-background-color: rgba(33, 150, 243, 0.8);
|
||||
}
|
||||
|
|
|
@ -231,7 +231,7 @@ private static void addClientArgs(Collection<String> args, ClientProfile profile
|
|||
Collections.addAll(args, "--versionType", "Launcher v" + Version.getVersion().getVersionString());
|
||||
|
||||
// Fix `-XstartOnFirstThread` in MacOS
|
||||
if (version.compareTo(ClientProfile.Version.MC114) >= 0 && JVMHelper.OS_TYPE == OS.MACOSX)
|
||||
if (version.compareTo(ClientProfile.Version.MC113) >= 0 && JVMHelper.OS_TYPE == OS.MACOSX)
|
||||
Collections.addAll(args, "-XstartOnFirstThread");
|
||||
|
||||
// Add server args
|
||||
|
|
Loading…
Reference in a new issue