From 7d6918646de3a92d0d23df567bd4f64657cd8255 Mon Sep 17 00:00:00 2001 From: RedFoxIV <38788538+RedFoxIV@users.noreply.github.com> Date: Tue, 27 Feb 2024 15:07:36 +0300 Subject: [PATCH] =?UTF-8?q?Re:=20"""=D0=B0=D0=BF=D0=B3=D1=80=D0=B5=D0=B9?= =?UTF-8?q?=D0=B4"""=20QuickDialogSystem=20(#133)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Content.Client/UserInterface/Controls/DialogWindow.xaml.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs b/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs index 41c6e4ba1b..4260bec463 100644 --- a/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs +++ b/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs @@ -182,7 +182,6 @@ public sealed partial class DialogWindow : FancyWindow { var (control, returner) = SetupLineEdit(valid, name, entry, last); var le = (LineEdit) control; - le.Text = "0"; return (control, ()=> le.Text.Length > 0 ? le.Text : "0"); // Otherwise you'll get kicked for malformed data } private (Control, Func) SetupLineEditHex(Func valid, string name, QuickDialogEntry entry, bool last)