forked from shaba/openuds
Added default value as TRUE to font smoothing for RDP
This commit is contained in:
parent
a8a5063083
commit
10d9279b89
@ -239,6 +239,7 @@ class BaseRDPTransport(transports.Transport):
|
|||||||
)
|
)
|
||||||
smooth = gui.CheckBoxField(
|
smooth = gui.CheckBoxField(
|
||||||
label=_('Font Smoothing'),
|
label=_('Font Smoothing'),
|
||||||
|
defvalue=gui.TRUE,
|
||||||
order=35,
|
order=35,
|
||||||
tooltip=_('If checked, fonts smoothing will be allowed'),
|
tooltip=_('If checked, fonts smoothing will be allowed'),
|
||||||
tab=gui.DISPLAY_TAB,
|
tab=gui.DISPLAY_TAB,
|
||||||
|
@ -158,8 +158,8 @@ class Proxy:
|
|||||||
prettyDest = ''
|
prettyDest = ''
|
||||||
logger.info('CONNECT FROM %s', prettySource)
|
logger.info('CONNECT FROM %s', prettySource)
|
||||||
|
|
||||||
|
# Handshake correct in this point, start SSL connection
|
||||||
try:
|
try:
|
||||||
# Handshake correct, get the command (4 bytes)
|
|
||||||
command: bytes = await source.recv(consts.COMMAND_LENGTH)
|
command: bytes = await source.recv(consts.COMMAND_LENGTH)
|
||||||
if command == consts.COMMAND_TEST:
|
if command == consts.COMMAND_TEST:
|
||||||
logger.info('COMMAND: TEST')
|
logger.info('COMMAND: TEST')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user