Hi seb128,

It seems that this bug occur from 3.26.1-0ubuntu2 for bug #1719938.

In debian/patches/ubuntu_ibus_configs.patch:

---
         if (g_variant_n_children (sources) < 1)
                 get_sources_from_xkb_config (manager);
+                add_ibus_sources_from_locale (settings);  <- it will be called 
each boot time.
         g_variant_unref (sources);
---

add_ibus_sources_from_locale() must be called only at first time (ie. sources 
is empty).
---
-        if (g_variant_n_children (sources) < 1)
+        if (g_variant_n_children (sources) < 1) {
                 get_sources_from_xkb_config (manager);
+                add_ibus_sources_from_locale (settings);
+        }
         g_variant_unref (sources);
---

Could you confirm this problem?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1723358

Title:
  gnome-settings-daemon duplicate input-sources each login

Status in Ubuntu Japanese Kaizen Project:
  Confirmed
Status in gnome-settings-daemon package in Ubuntu:
  Confirmed

Bug description:
  How to reproduce:
  1. Login to Ubuntu 17.10
  2. Exec on terminal
  $ gsettings get org.gnome.desktop.input-sources sources
  [('xkb', 'us'), ('ibus', 'mozc-jp')]
  3. Logout
  4. (re-)Login to Ubuntu 17.10
  5. Exec on terminal
  $ gsettings get org.gnome.desktop.input-sources sources

  Expected result:
  [('xkb', 'us'), ('ibus', 'mozc-jp')]

  Actual result:
  [('xkb', 'us'), ('ibus', 'mozc-jp'), ('ibus', 'mozc-jp')]

  => Duplicate input sources

  ---
  Original description:
  Subject: Ubuntu 17.10でログインする度にibus-mozcの項目が増殖する

  10月12日付けの artful-desktop-amd64.iso を Virtualbox にインストールし、
  何度もログアウトや再起動を繰り返した所、トップバーのキーボードの「あ」が増える現象に遭遇しました。

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-jp-improvement/+bug/1723358/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp

Reply via email to