Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 607161 Details for
Bug 851758
RFE: ibus does not honor the default input method configured in ibus-setup
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Patch for setup/main.py
ibus-851758-setup-engines-order.patch (text/plain), 1.64 KB, created by
fujiwara
on 2012-08-27 08:26:55 UTC
(
hide
)
Description:
Patch for setup/main.py
Filename:
MIME Type:
Creator:
fujiwara
Created:
2012-08-27 08:26:55 UTC
Size:
1.64 KB
patch
obsolete
>--- ibus-1.4.99.20120712/setup/main.py.orig 2012-08-27 17:16:53.598949060 +0900 >+++ ibus-1.4.99.20120712/setup/main.py 2012-08-27 17:22:57.868873123 +0900 >@@ -28,6 +28,7 @@ import time > from gi.repository import GLib > from gi.repository import Gtk > from gi.repository import IBus >+import gi > from os import path > from xdg import BaseDirectory > >@@ -325,6 +326,27 @@ class Setup(object): > engine_names = map(lambda e: e.get_name(), engines) > value = GLib.Variant.new_strv(engine_names) > self.__config.set_value("general", "preload_engines", value) >+ self.__config.set_value("general", "engines_order", value) >+ active_engine = None >+ if len(engine_names) > 0: >+ active_engine = engine_names[0] >+ self.__bus.get_global_engine_async(-1, None, >+ self.__treeview_notify_get_engine_finish, active_engine); >+ >+ def __treeview_notify_get_engine_finish(self, object, res, active_engine): >+ if self.__bus == None: >+ return >+ try: >+ desc = self.__bus.get_global_engine_async_finish(res); >+ if active_engine != desc.get_name(): >+ self.__bus.set_global_engine_async(active_engine, >+ -1, >+ None, >+ None, >+ None) >+ except gi._glib.GError, e: >+ # No active engine is found. >+ pass > > def __button_engine_add_cb(self, button): > engine = self.__combobox.get_active_engine()
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 851758
: 607161 |
775187