We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0801cf6 commit 8f79ebcCopy full SHA for 8f79ebc
app/src/main/java/com/winlator/core/Workarounds.java
@@ -10,11 +10,13 @@ public abstract class Workarounds {
10
// Workaround for applications that don't work mouse/keyboard
11
public static void onMapWindow(final WinHandler winHandler, Window window) {
12
final String className = window.getClassName();
13
- if (className.equals("twfc.exe")) {
+ if (className.equals("twfc.exe") ||
14
+ className.equals("daggerfallunity.exe")) {
15
+ final boolean reverse = className.equals("twfc.exe");
16
(new Timer()).schedule(new TimerTask() {
17
@Override
18
public void run() {
- winHandler.bringToFront(className, true);
19
+ winHandler.bringToFront(className, reverse);
20
}
21
}, 500);
22
0 commit comments