[Bug 1870945] Re: ubuntu-disable-trigger.patch is effectively not enabled

2020-05-24 Thread Gunnar Hjalmarsson
Rejected upstream, so re-closing. Upstream mentioned the idea to add a warning dialog instead, which sounds good to me. ** Changed in: ibus (Ubuntu) Status: In Progress => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ub

[Bug 1870945] Re: ubuntu-disable-trigger.patch is effectively not enabled

2020-05-02 Thread Bug Watch Updater
** Changed in: ibus Status: Unknown => New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1870945 Title: ubuntu-disable-trigger.patch is effectively not enabled To manage notifications about

[Bug 1870945] Re: ubuntu-disable-trigger.patch is effectively not enabled

2020-05-02 Thread Gunnar Hjalmarsson
While the non-working patch was dropped, I have proposed equivalent (working) code upstream: https://github.com/ibus/ibus/issues/ Awaiting upstream's reaction to that, I re-open this bug for now. ** Bug watch added: github.com/ibus/ibus/issues # https://github.com/ibus/ibus/issues/222

[Bug 1870945] Re: ubuntu-disable-trigger.patch is effectively not enabled

2020-05-01 Thread Launchpad Bug Tracker
This bug was fixed in the package ibus - 1.5.22-4ubuntu1 --- ibus (1.5.22-4ubuntu1) groovy; urgency=medium * Merge from Debian unstable, remaining changes: - d/p/ubuntu-forward-panel-properties.patch (for Unity) - d/control: Build-Depend on gnome-pkg-tools (for translations)

[Bug 1870945] Re: ubuntu-disable-trigger.patch is effectively not enabled

2020-04-29 Thread Gunnar Hjalmarsson
On Xenial the patch serves its intended purpose. I built IBus for Xenial with ubuntu-disable-trigger.patch disabled and then installed. That made the UI component show up for setting shortcut for "Next input method". It defaults to Space, but changing it to e.g. Space affects this dconf value: $ g

[Bug 1870945] Re: ubuntu-disable-trigger.patch is effectively not enabled

2020-04-05 Thread Sebastien Bacher
The patch was added to fix bug #1278511 , it would be easy enough to test if the issue exists again. The XDG_CURRENT_DESKTOP has been changed to be a list years ago, it's probably fine to remove the patch now if no users complained -- You received this bug notification because you are a member of

[Bug 1870945] Re: ubuntu-disable-trigger.patch is effectively not enabled

2020-04-05 Thread Gunnar Hjalmarsson
I tried to fix this by replacing: if os.getenv("XDG_CURRENT_DESKTOP") == "Unity": with: desktop = os.environ.get('XDG_CURRENT_DESKTOP') if desktop and 'Unity' in desktop.split(':'): But then ibus-setup didn't start at all under Unity: $ ibus-setup Traceback (most recent call la