Fixed new remove all groups description & fixed not removing pinbar on tunnel rdp

This commit is contained in:
Adolfo Gómez García 2021-09-14 11:02:37 +02:00
parent 710f2fb0e4
commit 7f5c3c3bbd
2 changed files with 3 additions and 1 deletions

View File

@ -156,7 +156,7 @@ CALENDAR_ACTION_DEL_GROUP: typing.Dict[str, typing.Any] = {
} }
CALENDAR_ACTION_DEL_ALL_GROUPS: typing.Dict[str, typing.Any] = { CALENDAR_ACTION_DEL_ALL_GROUPS: typing.Dict[str, typing.Any] = {
'id': 'REMOVE_ALL_GROUPS', 'id': 'REMOVE_ALL_GROUPS',
'description': _('Remove all transports'), 'description': _('Remove all groups'),
'params': (), 'params': (),
} }
CALENDAR_ACTION_IGNORE_UNUSED: typing.Dict[str, typing.Any] = { CALENDAR_ACTION_IGNORE_UNUSED: typing.Dict[str, typing.Any] = {

View File

@ -175,6 +175,7 @@ class TRDPTransport(BaseRDPTransport):
r.username = username r.username = username
r.password = password r.password = password
r.domain = domain r.domain = domain
r.redirectPrinters = self.allowPrinters.isTrue() r.redirectPrinters = self.allowPrinters.isTrue()
r.redirectSmartcards = self.allowSmartcards.isTrue() r.redirectSmartcards = self.allowSmartcards.isTrue()
r.redirectDrives = self.allowDrives.value r.redirectDrives = self.allowDrives.value
@ -186,6 +187,7 @@ class TRDPTransport(BaseRDPTransport):
r.multimon = self.multimon.isTrue() r.multimon = self.multimon.isTrue()
r.desktopComposition = self.aero.isTrue() r.desktopComposition = self.aero.isTrue()
r.smoothFonts = self.smooth.isTrue() r.smoothFonts = self.smooth.isTrue()
r.displayConnectionBar = self.showConnectionBar.isTrue()
r.enablecredsspsupport = self.credssp.isTrue() r.enablecredsspsupport = self.credssp.isTrue()
r.multimedia = self.multimedia.isTrue() r.multimedia = self.multimedia.isTrue()
r.alsa = self.alsa.isTrue() r.alsa = self.alsa.isTrue()