Skip to content

Commit

Permalink
process_damage_region can run from a timer, so the window may have be…
Browse files Browse the repository at this point in the history
…en unmanaged since it was scheduled - avoid printing a warning in this case

git-svn-id: https://xpra.org/svn/Xpra/trunk@3072 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Apr 15, 2013
1 parent af6f748 commit f271873
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/window_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ def process_damage_region(self, damage_time, window, x, y, w, h, coding, options
if w==0 or h==0:
return
if not window.is_managed():
warn("the window %s is not composited!?", window)
debug("the window %s is not composited!?", window)
return
# It's important to acknowledge changes *before* we extract them,
# to avoid a race condition.
Expand Down

0 comments on commit f271873

Please sign in to comment.