Skip to content

Commit

Permalink
window xid tends to be shown in hex in other tools
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@3128 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Apr 22, 2013
1 parent e9afb2b commit 6e3f237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/server_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ def _make_metadata(self, wid, window, propname):
cache["tray"] = window.is_tray()
try:
from wimpiggy.lowlevel import get_xwindow #@UnresolvedImport
cache["xid"] = get_xwindow(window.client_window)
cache["xid"] = hex(get_xwindow(window.client_window))
except:
pass
props = self.do_make_metadata(window, propname)
Expand Down

0 comments on commit 6e3f237

Please sign in to comment.