52495f2c74
- Upstream update to 1.5.30 * Fix Super key is not handled in GTK 4 applications * ui/gtk3: Fix SEGV with Super-space in Wayland * tools: Fix ibus start/restart in Plasma Wayland 5696033 * ui/gtk3: Fix ibus-daemon timeout in Plasma Wayland * ui/gtk3: Set Indicator status at launching time * Implement preedit color in Plasma Wayland * Implement ibus start/restart for Plasma Wayland * Show preferences menu item in activate menu * Fix control keys with game application * Fix typing freeze with barcode reader * Fix preedit issue with X applications * setup/enginedialog: Improve the search for engines - Refresh ibus-ui-gtk3-restart-via-systemd.patch - Drop patches merged by the upstream * ibus-complete-preedit-signals-for-postprocesskeyevent.patch * ibus-enginesimple-dont-commit-any-characters.patch OBS-URL: https://build.opensuse.org/request/show/1186022 OBS-URL: https://build.opensuse.org/package/show/M17N/ibus?expand=0&rev=290
18 lines
723 B
Diff
18 lines
723 B
Diff
diff -Nur ibus-1.5.29/ui/gtk3/panel.vala ibus-1.5.29-new/ui/gtk3/panel.vala
|
|
--- ibus-1.5.29/ui/gtk3/panel.vala 2023-11-09 13:59:25.000000000 +0800
|
|
+++ ibus-1.5.29-new/ui/gtk3/panel.vala 2023-11-30 23:07:02.891766723 +0800
|
|
@@ -636,10 +636,11 @@
|
|
get_engines_from_locale(engines);
|
|
|
|
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);
|
|
}
|