Skip to content

Commit

Permalink
fixup r26720
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@26723 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jun 15, 2020
1 parent 5ad190a commit 391bae6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xpra/codecs/image_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ def clone_plane(plane):
class ImageWrapper:

PACKED = 0
PLANAR_2 = 3
PLANAR_2 = 2
PLANAR_3 = 3
PLANAR_4 = 4
PLANE_OPTIONS = (PACKED, PLANAR_3, PLANAR_4)
PLANE_OPTIONS = (PACKED, PLANAR_2, PLANAR_3, PLANAR_4)
PLANE_NAMES = {
PACKED : "PACKED",
PLANAR_3 : "3_PLANES",
Expand Down

0 comments on commit 391bae6

Please sign in to comment.