-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Sogou input method shift fails to switch between Chinese and Eng…
…lish Disable the default shortcut key of altTriggerKeys Log: Sogou input method shift fails to switch between Chinese and English pms: BUG-288893
- Loading branch information
Showing
3 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
fcitx5 (5.1.11-2deepin2) unstable; urgency=medium | ||
|
||
* Disable the default shortcut key for altTriggerKeys | ||
|
||
-- Wang Yu <[email protected]> Wed, 11 Dec 2024 11:03:51 +0800 | ||
|
||
fcitx5 (5.1.11-2deepin1) unstable; urgency=medium | ||
|
||
* New upstream release. | ||
|
13 changes: 13 additions & 0 deletions
13
debian/patches/0010-disable-the-default-shortcut-key-for-altTriggerKeys.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Index: fcitx5/src/lib/fcitx/globalconfig.cpp | ||
=================================================================== | ||
--- fcitx5.orig/src/lib/fcitx/globalconfig.cpp | ||
+++ fcitx5/src/lib/fcitx/globalconfig.cpp | ||
@@ -44,7 +44,7 @@ FCITX_CONFIGURATION( | ||
this, | ||
"AltTriggerKeys", | ||
_("Temporally switch between first and current Input Method"), | ||
- {Key("Shift_L")}, | ||
+ {}, | ||
KeyListConstrain({KeyConstrainFlag::AllowModifierLess, | ||
KeyConstrainFlag::AllowModifierOnly})}; | ||
KeyListOption enumerateForwardKeys{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters