mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
InputText: Fixed MissingMethodException
http://msdn.microsoft.com/en-US/library/system.drawing.font.originalfontname.aspx
This commit is contained in:
parent
73adaffe43
commit
50328acdf5
@ -185,7 +185,7 @@ namespace InputText
|
||||
{
|
||||
try
|
||||
{
|
||||
this.txtInput.Font = new Font(this.txtInput.Font.OriginalFontName, float.Parse(sSize));
|
||||
this.txtInput.Font = new Font(this.txtInput.Font.Name, float.Parse(sSize));
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user