Skip to content

Commit

Permalink
#3337 use scrolling more aggressively
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Nov 28, 2021
1 parent d7a848d commit 7337884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/server/window/window_video_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def parse_scaling_options_str(scaling_options_str):
AV_SYNC_DEFAULT = envbool("XPRA_AV_SYNC_DEFAULT", False)
B_FRAMES = envbool("XPRA_B_FRAMES", True)
VIDEO_SKIP_EDGE = envbool("XPRA_VIDEO_SKIP_EDGE", False)
SCROLL_MIN_PERCENT = max(1, min(100, envint("XPRA_SCROLL_MIN_PERCENT", 50)))
SCROLL_MIN_PERCENT = max(1, min(100, envint("XPRA_SCROLL_MIN_PERCENT", 30)))
MIN_SCROLL_IMAGE_SIZE = envint("XPRA_MIN_SCROLL_IMAGE_SIZE", 128)

SAVE_VIDEO_PATH = os.environ.get("XPRA_SAVE_VIDEO_PATH", "")
Expand Down

0 comments on commit 7337884

Please sign in to comment.