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 296317 Details for
Bug 251878
SCIM cannot leave message with gnome-screensaver
[?]
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 scim
scim-fix-send-event.patch (text/plain), 1.72 KB, created by
Peng Wu
on 2008-02-29 08:36:58 UTC
(
hide
)
Description:
Patch for scim
Filename:
MIME Type:
Creator:
Peng Wu
Created:
2008-02-29 08:36:58 UTC
Size:
1.72 KB
patch
obsolete
>Index: scim-1.4.7/extras/gtk2_immodule/gtkimcontextscim.cpp >=================================================================== >--- scim-1.4.7.orig/extras/gtk2_immodule/gtkimcontextscim.cpp >+++ scim-1.4.7/extras/gtk2_immodule/gtkimcontextscim.cpp >@@ -63,6 +63,8 @@ > #include "scim_x11_utils.h" > #endif > >+#define SEND_EVENT_MASK 0x02 >+ > using namespace scim; > > #include "gtkimcontextscim.h" >@@ -978,7 +980,7 @@ gtk_scim_key_snooper (GtkWidget *grab > > gboolean ret = FALSE; > >- if (_focused_ic && _focused_ic->impl && (event->type == GDK_KEY_PRESS || event->type == GDK_KEY_RELEASE) && !event->send_event) { >+ if (_focused_ic && _focused_ic->impl && (event->type == GDK_KEY_PRESS || event->type == GDK_KEY_RELEASE) && !(event->send_event & SEND_EVENT_MASK)) { > _focused_widget = grab_widget; > > KeyEvent key = keyevent_gdk_to_scim (_focused_ic, *event); >@@ -1008,7 +1010,7 @@ gtk_scim_key_snooper (GtkWidget *grab > } else { > SCIM_DEBUG_FRONTEND(3) << "Failed snooper: " > << ((!_focused_ic || !_focused_ic->impl) ? "Invalid focused ic" : >- (event->send_event ? "send event is set" : "unknown")) >+ ((event->send_event & SEND_EVENT_MASK) ? "send event is set" : "unknown")) > << "\n"; > } > >@@ -1569,7 +1571,7 @@ keyevent_scim_to_gdk (const GtkIMContext > > gdkevent.type = (scimkey.is_key_release () ? GDK_KEY_RELEASE : GDK_KEY_PRESS); > gdkevent.window = ((ic && ic->impl) ? ic->impl->client_window : 0); >- gdkevent.send_event = TRUE; >+ gdkevent.send_event |= SEND_EVENT_MASK; > gdkevent.time = get_time (); > gdkevent.keyval = scimkey.code; > gdkevent.length = 0;
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 251878
:
296304
|
296315
| 296317