mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2024-12-01 05:43:49 +08:00
server: proxy: client: set glyph support level to NONE
This commit is contained in:
parent
8fee295733
commit
1da91444c0
@ -91,6 +91,14 @@ static void pf_OnErrorInfo(void* ctx, ErrorInfoEventArgs* e)
|
||||
static BOOL pf_client_pre_connect(freerdp* instance)
|
||||
{
|
||||
rdpSettings* settings = instance->settings;
|
||||
|
||||
/*
|
||||
* as the client's settings are copied from the server's, GlyphSupportLevel might not be
|
||||
* GLYPH_SUPPORT_NONE. the proxy currently do not support GDI & GLYPH_SUPPORT_CACHE, so
|
||||
* GlyphCacheSupport must be explicitly set to GLYPH_SUPPORT_NONE.
|
||||
*/
|
||||
settings->GlyphSupportLevel = GLYPH_SUPPORT_NONE;
|
||||
|
||||
settings->OsMajorType = OSMAJORTYPE_UNIX;
|
||||
settings->OsMinorType = OSMINORTYPE_NATIVE_XSERVER;
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user