Skip to content

Commit

Permalink
I should test stuff before I commit huh
Browse files Browse the repository at this point in the history
  • Loading branch information
lay295 committed Sep 17, 2019
1 parent 5d1514c commit bed0812
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions TwitchDownloader/frmChatRender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,11 @@ private void FrmChatRender_Load(object sender, EventArgs e)
checkOutline.Checked = Properties.Settings.Default.RENDER_OUTLINE;
textFontSize.Text = Properties.Settings.Default.RENDER_FONT_SIZE.ToString();
textUpdateTime.Text = Properties.Settings.Default.RENDER_UPDATE_TIME.ToString();

if (textFontSize.Text.IndexOf('.') == -1)
textFontSize.Text += ".0";
if (textUpdateTime.Text.IndexOf('.') == -1)
textUpdateTime.Text += ".0";
}
}

Expand Down

0 comments on commit bed0812

Please sign in to comment.