Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions files/usr/share/cinnamon/applets/menu@cinnamon.org/applet.js
Original file line number Diff line number Diff line change
Expand Up @@ -1718,6 +1718,11 @@ class CinnamonMenuApplet extends Applet.TextIconApplet {
return Clutter.EVENT_STOP;
}

if (this.searchEntryText.has_preedit()) {
// There is an uncommitted text in the search box, let the input method to handle this.
return Clutter.EVENT_PROPAGATE;
}

let ctrlKey = modifierState & Clutter.ModifierType.CONTROL_MASK;

// If a context menu is open, hijack keyboard navigation and concentrate on the context menu.
Expand Down