Skip to content

Commit

Permalink
Remove additional space around '×'
Browse files Browse the repository at this point in the history
  • Loading branch information
xupefei committed May 8, 2017
1 parent 0995ebb commit 8388d7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QuickLook.Plugin/QuickLook.Plugin.ImageViewer/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void View(string path, ContextObject context)
_ip = new ImagePanel(path);

context.ViewerContent = _ip;
context.Title = $"{Path.GetFileName(path)} ({_imageSize.Width} × {_imageSize.Height})";
context.Title = $"{Path.GetFileName(path)} ({_imageSize.Width}×{_imageSize.Height})";

context.IsBusy = false;
}
Expand Down

0 comments on commit 8388d7d

Please sign in to comment.