Skip to content

Commit 8ce6b81

Browse files
authored
Merge pull request #1715 from contour-terminal/fix/ime_with_multiple_codepoints
Relax condition for codepoints size for IME
2 parents cd912d1 + f5f3212 commit 8ce6b81

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

metainfo.xml

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@
109109
<ul>
110110
<li>Fixes `CancelSelection` default binding with escape (#1710)</li>
111111
<li>Fixes `CreateTab` to sometimes spawn more than one tab (#1695)</li>
112+
<li>Fixes crash using Chinese IME (#1707)</li>
112113
<li>Ensure inserting new tabs happens right next to the currently active tab (#1695)</li>
113114
<li>Adds `MoveTabToLeft` and `MoveTabToRight` actions to move tabs around (#1695)</li>
114115
<li>Adds `MoveTabTo` action to move tabs to a specific position (#1695)</li>

src/contour/helper.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ bool sendKeyEvent(QKeyEvent* event, vtbackend::KeyboardEventType eventType, Term
407407
if (!event->text().isEmpty())
408408
{
409409
auto const codepoints = event->text().toUcs4();
410-
assert(codepoints.size() == 1);
410+
assert(codepoints.size() >= 1);
411411
#if defined(__APPLE__)
412412
// On macOS the Alt-modifier does not seem to be passed to the terminal apps
413413
// but rather remapped to whatever macOS is mapping them to.

0 commit comments

Comments
 (0)