From 8ebef7126507e87a0db32e1bedcc9a54f85b6909 Mon Sep 17 00:00:00 2001 From: aschumann-virtualcable Date: Thu, 26 Mar 2026 12:13:05 +0100 Subject: [PATCH] Set RDP file usage default to false for Linux and Mac Updates the default setting to not use RDP files for Thincast or xfreerdp on Linux and Mac OS X. Prevents automatic RDP file usage unless explicitly enabled, likely to better match user expectations or deployment configurations. --- src/uds/transports/RDP/rdp_base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uds/transports/RDP/rdp_base.py b/src/uds/transports/RDP/rdp_base.py index d52b750e7..a5bfefef3 100644 --- a/src/uds/transports/RDP/rdp_base.py +++ b/src/uds/transports/RDP/rdp_base.py @@ -313,7 +313,7 @@ class BaseRDPTransport(transports.Transport): order=42, tooltip=_('If marked, an RDP file will be used for connections with Thincast or xfreerdp on Linux.'), tab='Linux Client', - default=True, + default=False, old_field_name='lnx_thincastRdpFile', ) lnx_printer_string = gui.TextField( @@ -357,7 +357,7 @@ class BaseRDPTransport(transports.Transport): order=51, tooltip=_('If marked, an RDP file will be used for connections with Thincast or xfreerdp on Mac OS X.'), tab='Mac OS X', - default=True, + default=False, old_field_name='mac_thincastRdpFile', )