You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
KyprotonTextBox.cs;
In the KyprotonTextBox method of "protected override void OnNeedPaint(object sender, NeedLayoutEventArgs e)"
the following piece of the code
Font font = triple.PaletteContent.GetContentShortTextFont(state);
if ((_textBox.Handle != IntPtr.Zero) && !_textBox.Font.Equals(font))
_textBox.Font = font; //change the font set by user
cause the the font set by user not to effect
The text was updated successfully, but these errors were encountered:
KyprotonTextBox.cs;
In the KyprotonTextBox method of "protected override void OnNeedPaint(object sender, NeedLayoutEventArgs e)"
the following piece of the code
Font font = triple.PaletteContent.GetContentShortTextFont(state);
if ((_textBox.Handle != IntPtr.Zero) && !_textBox.Font.Equals(font))
_textBox.Font = font; //change the font set by user
cause the the font set by user not to effect
The text was updated successfully, but these errors were encountered: