Skip to content

Commit

Permalink
#2466 GTK3 is painting to an offscreen buffer, so we need to trigger …
Browse files Browse the repository at this point in the history
…a repaint

git-svn-id: https://xpra.org/svn/Xpra/trunk@24350 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Nov 3, 2019
1 parent 5ffb532 commit fcd0598
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xpra/client/gl/gl_window_backing_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

from xpra.os_util import (
monotonic_time, strtobytes, hexstr,
POSIX, OSX,
POSIX, OSX, WIN32,
DummyContextManager,
)
from xpra.util import envint, envbool, repr_ellipsized
Expand All @@ -75,7 +75,7 @@
JPEG_YUV = envbool("XPRA_JPEG_YUV", True)
WEBP_YUV = envbool("XPRA_WEBP_YUV", True)
FORCE_CLONE = envbool("XPRA_OPENGL_FORCE_CLONE", False)
DRAW_REFRESH = envbool("XPRA_OPENGL_DRAW_REFRESH", False)
DRAW_REFRESH = envbool("XPRA_OPENGL_DRAW_REFRESH", WIN32)
FBO_RESIZE = envbool("XPRA_OPENGL_FBO_RESIZE", True)
FBO_RESIZE_DELAY = envint("XPRA_OPENGL_FBO_RESIZE_DELAY", 50)
CONTEXT_REINIT = envbool("XPRA_OPENGL_CONTEXT_REINIT", OSX)
Expand Down

0 comments on commit fcd0598

Please sign in to comment.