Skip to content

Commit

Permalink
better warning message format
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@18188 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jan 29, 2018
1 parent cec8c58 commit f72a362
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/xpra/client/gtk2/gtk2_window_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,8 @@ def remove_pointer_overlay():
def queue_draw(self, x, y, width, height):
window = self.get_window()
if not window:
log.warn("ignoring draw received for a window which is not realized yet!")
log.warn("Warning: ignoring draw packet,")
log.warn(" received for a window which is not realized yet or gone already")
return
rect = gdk.Rectangle(x, y, width, height)
if not FORCE_IMMEDIATE_PAINT:
Expand Down

0 comments on commit f72a362

Please sign in to comment.