Resolves #2232532 converting Super+Space to wide space character
This commit is contained in:
parent
8ebcd4ba97
commit
a6fcc88d3c
@ -763,3 +763,45 @@ index 2ebf894..20786f2 100644
|
|||||||
--
|
--
|
||||||
2.41.0
|
2.41.0
|
||||||
|
|
||||||
|
From c1ffc2bfcedab68ce79c2fa9a7f2bfe6cec17595 Mon Sep 17 00:00:00 2001
|
||||||
|
From: fujiwarat <takao.fujiwara1@gmail.com>
|
||||||
|
Date: Fri, 18 Aug 2023 18:52:58 +0900
|
||||||
|
Subject: [PATCH] engine: Distinguish Super-space and space shortcut keys
|
||||||
|
|
||||||
|
BUG=rhbz#2232532
|
||||||
|
---
|
||||||
|
engine/python2/engine.py | 3 ++-
|
||||||
|
engine/python3/engine.py | 3 ++-
|
||||||
|
2 files changed, 4 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/engine/python2/engine.py b/engine/python2/engine.py
|
||||||
|
index 4b3da97..80cfa86 100644
|
||||||
|
--- a/engine/python2/engine.py
|
||||||
|
+++ b/engine/python2/engine.py
|
||||||
|
@@ -1940,7 +1940,8 @@ class Engine(IBus.EngineSimple):
|
||||||
|
|
||||||
|
state = state & (IBus.ModifierType.SHIFT_MASK |
|
||||||
|
IBus.ModifierType.CONTROL_MASK |
|
||||||
|
- IBus.ModifierType.MOD1_MASK)
|
||||||
|
+ IBus.ModifierType.MOD1_MASK |
|
||||||
|
+ IBus.ModifierType.MOD4_MASK)
|
||||||
|
|
||||||
|
# ignore key release events
|
||||||
|
if not is_press:
|
||||||
|
diff --git a/engine/python3/engine.py b/engine/python3/engine.py
|
||||||
|
index 20786f2..7c0d283 100644
|
||||||
|
--- a/engine/python3/engine.py
|
||||||
|
+++ b/engine/python3/engine.py
|
||||||
|
@@ -1935,7 +1935,8 @@ class Engine(IBus.EngineSimple):
|
||||||
|
|
||||||
|
state = state & (IBus.ModifierType.SHIFT_MASK |
|
||||||
|
IBus.ModifierType.CONTROL_MASK |
|
||||||
|
- IBus.ModifierType.MOD1_MASK)
|
||||||
|
+ IBus.ModifierType.MOD1_MASK |
|
||||||
|
+ IBus.ModifierType.MOD4_MASK)
|
||||||
|
|
||||||
|
# ignore key release events
|
||||||
|
if not is_press:
|
||||||
|
--
|
||||||
|
2.41.0
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
Name: ibus-anthy
|
Name: ibus-anthy
|
||||||
Version: 1.5.14
|
Version: 1.5.14
|
||||||
Release: 14%{?dist}
|
Release: 15%{?dist}
|
||||||
Summary: The Anthy engine for IBus input platform
|
Summary: The Anthy engine for IBus input platform
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
URL: https://github.com/ibus/ibus/wiki
|
URL: https://github.com/ibus/ibus/wiki
|
||||||
@ -156,6 +156,9 @@ make -C data check
|
|||||||
%{_datadir}/installed-tests/%{name}
|
%{_datadir}/installed-tests/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Aug 18 2023 Takao Fujiwara <tfujiwar@redhat.com> - 1.5.14-15
|
||||||
|
- Resolves #2232532 converting Super+Space to wide space character
|
||||||
|
|
||||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.14-14
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.14-14
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user