Skip to content

Commit

Permalink
log "ClientMessage"s we don't handle with more details, so we can dia…
Browse files Browse the repository at this point in the history
…gnose them and maybe even support them later

git-svn-id: https://xpra.org/svn/Xpra/trunk@1319 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Aug 13, 2012
1 parent bd8ab7e commit 9ca682f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wimpiggy/lowlevel/bindings.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1990,7 +1990,7 @@ cdef GdkFilterReturn x_event_filter(GdkXEvent * e_gdk,
pyev.format = e.xclient.format
# I am lazy. Add this later if needed for some reason.
if pyev.format != 32:
log.warn("FIXME: Ignoring ClientMessage with format != 32")
log.warn("FIXME: Ignoring ClientMessage type=%s with format=%s (!=32)" % (pyev.message_type, pyev.format))
return GDK_FILTER_CONTINUE
pieces = []
for i in xrange(5):
Expand Down

0 comments on commit 9ca682f

Please sign in to comment.