Skip to content
Snippets Groups Projects
Commit 0f2621a0 authored by tobias's avatar tobias
Browse files

Fixed combobox bug (disable accessible for windows)

parent eab05108
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,8 @@ import de.tobias.utils.ui.ViewController;
import de.tobias.utils.util.ConsoleUtils;
import de.tobias.utils.util.Localization;
import de.tobias.utils.util.Localization.LocalizationDelegate;
import de.tobias.utils.util.OS;
import de.tobias.utils.util.OS.OSType;
import de.tobias.utils.util.Worker;
import javafx.application.Application;
import javafx.application.Platform;
......@@ -91,7 +93,6 @@ import net.xeoh.plugins.base.impl.PluginManagerFactory;
// Profile mit UUID
// Pad System neu machen
// Neue PadViewController für jedes pad
// Midi Modell Überarbeiten
......@@ -99,8 +100,6 @@ import net.xeoh.plugins.base.impl.PluginManagerFactory;
// TEST Trigger
// PlayWall 5.1
// FEATURE Global Volume Trigger mit x% und 100%
// FEATURE Option bei Import Media auch Copy Media in Library
......@@ -138,6 +137,10 @@ public class PlayPadMain extends Application implements LocalizationDelegate, Pl
}
public static void main(String[] args) throws Exception {
if (OS.getType() == OSType.Windows) {
System.setProperty("glass.accessible.force", "false");
}
// Debug
System.setOut(ConsoleUtils.convertStream(System.out, "[PlayWall] "));
System.setErr(ConsoleUtils.convertStream(System.err, "[PlayWall] "));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment