Skip to content

Commit

Permalink
#4459 'ALL_CLIPBOARDS' should not use platform specific values
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jan 8, 2025
1 parent 8d046ff commit 188a218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/clipboard/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
MAX_CLIPBOARD_RECEIVE_SIZE: Final[int] = envint("XPRA_MAX_CLIPBOARD_RECEIVE_SIZE", -1)
MAX_CLIPBOARD_SEND_SIZE: Final[int] = envint("XPRA_MAX_CLIPBOARD_SEND_SIZE", -1)

ALL_CLIPBOARDS: Sequence[str] = tuple(PLATFORM_CLIPBOARDS)
ALL_CLIPBOARDS: Sequence[str] = ("CLIPBOARD", "PRIMARY", "SECONDARY")
CLIPBOARDS: list[str] = list(PLATFORM_CLIPBOARDS)
CLIPBOARDS_ENV: str | None = os.environ.get("XPRA_CLIPBOARDS")
if CLIPBOARDS_ENV is not None:
Expand Down

0 comments on commit 188a218

Please sign in to comment.