Remove additional space around '×'

This commit is contained in:
Paddy Xu
2017-05-08 22:01:00 +03:00
parent 0995ebb7c2
commit 8388d7d347

View File

@@ -45,7 +45,7 @@ namespace QuickLook.Plugin.ImageViewer
_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;
}