9aaebaadb4
- Upstream update to 1.5.27 * Disable XKB engines in Plasma Wayland * ibusimcontext keycode - 8 for gtk3 keycode generation * client/gtk2: Revert CCedilla change for pt-BR * Add IBUS_CAP_OSK to IBusCapabilite * Enable ibus restart in GNOME desktop * Add ibus im-module command * Implement new process_key_event for GTK4 * src/ibusengine: Add focus_in_id()/focus_out_id() class methods * Delete xkb:latam:: in denylist.txt * Enhance Xutf8TextListToTextProperty * Revert Emoji shoftcut key to Super-space * Update simple.xml with xkeyboard-config 2.36 * Fix refcounting issues * Drop ibus-fix-refcounting-issues.patch * Fix bashisms in org.freedesktop.IBus.session.GNOME.service * Update xkb-latin-layouts in gschema * Use our own prefix to look up systemd user services dir * Add functionality to change IBus panel themes with available GTK themes * Update translation - Refresh im-engines-precede-xkb.patch - Add pkgconfig(libnotify) for the GTK4 flavor OBS-URL: https://build.opensuse.org/request/show/999517 OBS-URL: https://build.opensuse.org/package/show/M17N/ibus?expand=0&rev=269
15 lines
588 B
Diff
15 lines
588 B
Diff
--- ibus-1.5.27/ui/gtk3/panel.vala.org 2022-08-23 00:32:16.000000000 +0900
|
|
+++ ibus-1.5.27/ui/gtk3/panel.vala 2022-08-27 11:48:21.086332809 +0900
|
|
@@ -589,9 +589,9 @@
|
|
}
|
|
|
|
string[] names = {};
|
|
- foreach (unowned IBus.EngineDesc engine in xkb_engines)
|
|
- names += engine.get_name();
|
|
foreach (unowned IBus.EngineDesc engine in im_engines)
|
|
+ names += engine.get_name();
|
|
+ foreach (unowned IBus.EngineDesc engine in xkb_engines)
|
|
names += engine.get_name();
|
|
|
|
m_settings_general.set_strv("preload-engines", names);
|