Changeset 1225 in xpra
- Timestamp:
- 07/31/12 08:19:03 (10 months ago)
- File:
-
- 1 edited
-
trunk/src/wimpiggy/prop.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wimpiggy/prop.py
r1222 r1225 182 182 return None 183 183 return str(pyatom) 184 185 def _get_multiple(disp, d): 186 uint_struct = struct.Struct("=I") 187 log("get_multiple struct size=%s, len(%s)=%s", uint_struct.size, d, len(d)) 188 if len(d)!=uint_struct.size and False: 189 log.info("get_multiple value is not an atom: %s", d) 190 return str(d) 191 return _get_atom(disp, d) 184 192 185 193 def get_xsettings(disp, d): … … 244 252 # AnyPropertyType and assume that what you get is a bunch of pairs of 245 253 # atoms. 246 "multiple-conversion": (str, 0, 32, unsupported, _get_ atom, None),254 "multiple-conversion": (str, 0, 32, unsupported, _get_multiple, None), 247 255 } 248 256
Note: See TracChangeset
for help on using the changeset viewer.