Browse Source

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

Removed duplicate registraion of IRenderLoop
pull/6649/head
Nikita Tsukanov 5 years ago
committed by GitHub
parent
commit
9311ff8a36
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/Linux/Avalonia.LinuxFramebuffer/LinuxFramebufferPlatform.cs

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

@ -44,7 +44,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