Skip to content

Commit bed0812

Browse files
committed
I should test stuff before I commit huh
1 parent 5d1514c commit bed0812

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

TwitchDownloader/frmChatRender.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,11 @@ private void FrmChatRender_Load(object sender, EventArgs e)
754754
checkOutline.Checked = Properties.Settings.Default.RENDER_OUTLINE;
755755
textFontSize.Text = Properties.Settings.Default.RENDER_FONT_SIZE.ToString();
756756
textUpdateTime.Text = Properties.Settings.Default.RENDER_UPDATE_TIME.ToString();
757+
758+
if (textFontSize.Text.IndexOf('.') == -1)
759+
textFontSize.Text += ".0";
760+
if (textUpdateTime.Text.IndexOf('.') == -1)
761+
textUpdateTime.Text += ".0";
757762
}
758763
}
759764

0 commit comments

Comments
 (0)