From 391bae6424b360cb5f9ef35263b5ac01c9b23654 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 15 Jun 2020 04:06:40 +0000 Subject: [PATCH] fixup r26720 git-svn-id: https://xpra.org/svn/Xpra/trunk@26723 3bb7dfac-3a0b-4e04-842a-767bc560f471 --- src/xpra/codecs/image_wrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xpra/codecs/image_wrapper.py b/src/xpra/codecs/image_wrapper.py index 3809e99484..52db517262 100644 --- a/src/xpra/codecs/image_wrapper.py +++ b/src/xpra/codecs/image_wrapper.py @@ -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",