From 2b2f7ea3f0b9ef38770cebf89357adeaea06e692 Mon Sep 17 00:00:00 2001 From: Eric Date: Tue, 16 Sep 2025 14:29:47 +0800 Subject: [PATCH] perf: add rdp true color 24 bit --- apps/users/const.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/users/const.py b/apps/users/const.py index 658ed28fe..ea3bc1f30 100644 --- a/apps/users/const.py +++ b/apps/users/const.py @@ -45,6 +45,7 @@ class RDPSmartSize(TextChoices): class RDPColorQuality(TextChoices): HIGH = '32', _('High(32 bit)') + TRUE_COLOR = '24', _('True Color(24 bit)') MEDIUM = '16', _('Medium(16 bit)')