Skip to content

Commit b81bd79

Browse files
committed
Bugfix where the option to force right alt to be ISO L3 Shift would remain turned on until the app is force-closed.
1 parent a0d8a37 commit b81bd79

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bVNC/src/main/java/com/iiordanov/bVNC/input/RemoteVncKeyboard.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ public class RemoteVncKeyboard extends RemoteKeyboard {
1515
public RemoteVncKeyboard (RfbConnectable r, RemoteCanvas v, Handler h, boolean rAltAsIsoL3Shift) {
1616
super(r, v, h);
1717
// Indicate we want Right Alt to be ISO L3 SHIFT if preferred.
18-
if (rAltAsIsoL3Shift)
19-
RemoteVncKeyboard.rAltAsIsoL3Shift = rAltAsIsoL3Shift;
18+
RemoteVncKeyboard.rAltAsIsoL3Shift = rAltAsIsoL3Shift;
2019
}
2120

2221
public boolean processLocalKeyEvent(int keyCode, KeyEvent evt, int additionalMetaState) {

0 commit comments

Comments
 (0)