Browse Source

Merge pull request #6645 from blindmatrix/remove-redundant-code-1

Removed duplicate registraion of IRenderLoop
release/0.10.9
Nikita Tsukanov 5 years ago
committed by Dan Walmsley
parent
commit
da371f97be
  1. 1
      src/Linux/Avalonia.LinuxFramebuffer/LinuxFramebufferPlatform.cs

1
src/Linux/Avalonia.LinuxFramebuffer/LinuxFramebufferPlatform.cs

@ -47,7 +47,6 @@ namespace Avalonia.LinuxFramebuffer
.Bind<ICursorFactory>().ToTransient<CursorFactoryStub>()
.Bind<IKeyboardDevice>().ToConstant(new KeyboardDevice())
.Bind<IPlatformSettings>().ToSingleton<PlatformSettings>()
.Bind<IRenderLoop>().ToConstant(new RenderLoop())
.Bind<PlatformHotkeyConfiguration>().ToSingleton<PlatformHotkeyConfiguration>();
}

Loading…
Cancel
Save