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 e4695e1 commit e13f586Copy full SHA for e13f586
srcs/juloo.keyboard2/LayoutModifier.java
@@ -152,7 +152,9 @@ static KeyValue modify_key(KeyValue orig)
152
return KeyValue.getKeyByName("change_method_prev");
153
break;
154
case ACTION:
155
- if (globalConfig.swapEnterActionKey && globalConfig.actionLabel != null)
+ if (globalConfig.actionLabel == null)
156
+ return null; // Remove the action key
157
+ if (globalConfig.swapEnterActionKey)
158
return KeyValue.getKeyByName("enter");
159
return KeyValue.makeActionKey(globalConfig.actionLabel);
160
case SWITCH_FORWARD:
0 commit comments