Fixed Image Errors + Handing Bad ShellRun

This commit is contained in:
Aaron Campf
2014-05-08 15:58:38 -07:00
parent 0b70c5225d
commit 7c2e2a01c2
7 changed files with 144 additions and 150 deletions

View File

@@ -24,7 +24,7 @@ namespace Wox.Helper
static FontStyleConverter fontStyleConverter = new FontStyleConverter();
public static FontStyle GetFontStyleFromInvariantStringOrNormal(string value)
{
{
try
{
return (FontStyle)fontStyleConverter.ConvertFromInvariantString(value);
@@ -37,7 +37,7 @@ namespace Wox.Helper
static FontStretchConverter fontStretchConverter = new FontStretchConverter();
public static FontStretch GetFontStretchFromInvariantStringOrNormal(string value)
{
{
try
{
return (FontStretch)fontStretchConverter.ConvertFromInvariantString(value);