delete useless reference

This commit is contained in:
Paddy Xu
2017-05-15 00:38:10 +03:00
parent b210b03383
commit 375b3b9a59
2 changed files with 1 additions and 4 deletions
@@ -37,7 +37,7 @@ namespace QuickLook.Plugin.MarkdownViewer
{
_panel = new WebkitPanel();
context.ViewerContent = _panel;
context.Title = Path.IsPathRooted(path) ? Path.GetFileName(path) : path;
context.Title = Path.GetFileName(path);
_panel.LoadHtml(GenerateMarkdownHtml(path), path);