Merge pull request #206 from laarmen/fix_forms_ios_opacity
Make the iOS Forms views non-opaque. Fixes #198
This commit is contained in:
Коммит
01c7253d88
|
@ -86,6 +86,9 @@ namespace SkiaSharp.Views.Forms
|
|||
UserInteractionEnabled = false;
|
||||
|
||||
this.controller = controller;
|
||||
|
||||
// Force the opacity to false for consistency with the other platforms
|
||||
Opaque = false;
|
||||
}
|
||||
|
||||
public override void DrawInSurface(SKSurface surface, SKImageInfo info)
|
||||
|
|
|
@ -132,6 +132,9 @@ namespace SkiaSharp.Views.Forms
|
|||
UserInteractionEnabled = false;
|
||||
|
||||
this.controller = controller;
|
||||
|
||||
// Force the opacity to false for consistency with the other platforms
|
||||
Opaque = false;
|
||||
}
|
||||
|
||||
public override void DrawInSurface(SKSurface surface, GRBackendRenderTargetDesc renderTarget)
|
||||
|
|
Загрузка…
Ссылка в новой задаче