Renamed fntBold to font since it is not necessarily bold.
Two minor corrections
This commit is contained in:
@@ -502,10 +502,10 @@ namespace Sync
|
||||
}
|
||||
}
|
||||
|
||||
private static void AddText(RichTextBox rtb, Font fntBold, string txt)
|
||||
private static void AddText(RichTextBox rtb, Font font, string txt)
|
||||
{
|
||||
rtb.Select(rtb.TextLength, 0);
|
||||
rtb.SelectionFont = fntBold;
|
||||
rtb.SelectionFont = font;
|
||||
rtb.SelectedText = txt;
|
||||
}
|
||||
private void dgv_MouseDown(object sender, MouseEventArgs e)
|
||||
|
Reference in New Issue
Block a user