Fix TextFilteringContext not getting exposed

This commit is contained in:
Garry Newman 2021-09-24 14:00:16 +01:00
parent 821975435c
commit bfa94d89fa

View File

@ -144,7 +144,7 @@ internal static string Expose( string name )
if ( name == "NetDebugOutput" ) return "public"; if ( name == "NetDebugOutput" ) return "public";
if ( name == "ItemPreviewType" ) return "public"; if ( name == "ItemPreviewType" ) return "public";
if ( name == "OverlayToStoreFlag" ) return "public"; if ( name == "OverlayToStoreFlag" ) return "public";
if ( name == "TextFilteringContext " ) return "public"; if ( name == "TextFilteringContext" ) return "public";
return "internal"; return "internal";
} }