Changeset 17835 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2021-04-29T19:42:08+02:00 (3 years ago)
Author:
simon04
Message:

fix #20821 - JTabPanel active tab text in white on macOS Big Sur (Java 16)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r17807 r17835  
    10741074                Logging.log(Logging.LEVEL_ERROR, null, e);
    10751075            }
    1076         } else if (PlatformManager.isPlatformOsx() && javaVersion < 16) {
    1077             // Workaround for JDK-8251377: JTabPanel active tab is unreadable in Big Sur, see #20075
     1076        } else if (PlatformManager.isPlatformOsx() && javaVersion < 17) {
     1077            // Workaround for JDK-8251377: JTabPanel active tab is unreadable in Big Sur, see #20075, see #20821
    10781078            // os.version will return 10.16, or 11.0 depending on environment variable
    10791079            // https://twitter.com/BriceDutheil/status/1330926649269956612
Note: See TracChangeset for help on using the changeset viewer.