#74 - Subtitle font

This commit is contained in:
Luke Pulverenti
2013-04-04 15:34:50 -04:00
parent c45e152205
commit cb6170712d
5 changed files with 105 additions and 35 deletions

View File

@@ -320,32 +320,6 @@ namespace MediaBrowser.Server.Implementations
}
}
/// <summary>
/// The _media tools path
/// </summary>
private string _mediaToolsPath;
/// <summary>
/// Gets the folder path to tools
/// </summary>
/// <value>The media tools path.</value>
public string MediaToolsPath
{
get
{
if (_mediaToolsPath == null)
{
_mediaToolsPath = Path.Combine(ProgramDataPath, "MediaTools");
if (!Directory.Exists(_mediaToolsPath))
{
Directory.CreateDirectory(_mediaToolsPath);
}
}
return _mediaToolsPath;
}
}
/// <summary>
/// The _images data path
/// </summary>