Browse Source

revert using uithread render timer.

release/0.10.0-preview4
Dan Walmsley 6 years ago
parent
commit
9b8d4d7367
  1. 2
      src/Windows/Avalonia.Win32/Win32Platform.cs

2
src/Windows/Avalonia.Win32/Win32Platform.cs

@ -88,7 +88,7 @@ namespace Avalonia.Win32
.Bind<IPlatformSettings>().ToConstant(s_instance)
.Bind<IPlatformThreadingInterface>().ToConstant(s_instance)
.Bind<IRenderLoop>().ToConstant(new RenderLoop())
.Bind<IRenderTimer>().ToConstant(new UiThreadRenderTimer(60))
.Bind<IRenderTimer>().ToConstant(new DefaultRenderTimer(60))
.Bind<ISystemDialogImpl>().ToSingleton<SystemDialogImpl>()
.Bind<IWindowingPlatform>().ToConstant(s_instance)
.Bind<PlatformHotkeyConfiguration>().ToSingleton<PlatformHotkeyConfiguration>()

Loading…
Cancel
Save