mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-12 23:23:17 +00:00
Merge remote-tracking branch 'origin/GP-4973_ryanmkurtz_default-themes'
This commit is contained in:
commit
b8369d242a
@ -4,9 +4,9 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@ -153,16 +153,11 @@ public enum LafType {
|
||||
*/
|
||||
public static LafType getDefaultLookAndFeel() {
|
||||
OperatingSystem OS = Platform.CURRENT_PLATFORM.getOperatingSystem();
|
||||
switch (OS) {
|
||||
case MAC_OS_X:
|
||||
return MAC;
|
||||
case WINDOWS:
|
||||
return WINDOWS;
|
||||
case LINUX:
|
||||
case UNSUPPORTED:
|
||||
default:
|
||||
return NIMBUS;
|
||||
}
|
||||
return switch (OS) {
|
||||
case MAC_OS_X -> MAC;
|
||||
case WINDOWS -> WINDOWS;
|
||||
default -> FLAT_LIGHT;
|
||||
};
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -616,16 +616,11 @@ public abstract class ThemeManager {
|
||||
*/
|
||||
public static GTheme getDefaultTheme() {
|
||||
OperatingSystem OS = Platform.CURRENT_PLATFORM.getOperatingSystem();
|
||||
switch (OS) {
|
||||
case MAC_OS_X:
|
||||
return new MacTheme();
|
||||
case WINDOWS:
|
||||
return new WindowsTheme();
|
||||
case LINUX:
|
||||
case UNSUPPORTED:
|
||||
default:
|
||||
return new NimbusTheme();
|
||||
}
|
||||
return switch (OS) {
|
||||
case MAC_OS_X -> new MacTheme();
|
||||
case WINDOWS -> new WindowsTheme();
|
||||
default -> new FlatLightTheme();
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user