From 3ad024b95a8dd2e6d495ec2f1f7f30eabfb8da17 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sat, 26 Mar 2022 12:53:28 +0100 Subject: [PATCH] fixed KeybindButton inheritdoc referencing itself --- MLEM.Ui/Elements/ElementHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MLEM.Ui/Elements/ElementHelper.cs b/MLEM.Ui/Elements/ElementHelper.cs index f1a7a8f..3113eb5 100644 --- a/MLEM.Ui/Elements/ElementHelper.cs +++ b/MLEM.Ui/Elements/ElementHelper.cs @@ -115,7 +115,7 @@ namespace MLEM.Ui.Elements { return group; } - /// + /// public static Button KeybindButton(Anchor anchor, Vector2 size, Keybind keybind, InputHandler inputHandler, string activePlaceholder, GenericInput unbindKey = default, string unboundPlaceholder = "", Func inputName = null, int index = 0) { return KeybindButton(anchor, size, keybind, inputHandler, activePlaceholder, new Keybind(unbindKey), unboundPlaceholder, inputName, index); }