Merge branch 'master' of github.com:QL-Win/QuickLook

This commit is contained in:
Paddy Xu
2022-11-23 20:38:56 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ namespace QuickLook.Plugin.CsvViewer
public bool CanHandle(string path)
{
return !Directory.Exists(path) && path.ToLower().EndsWith(".csv");
return !Directory.Exists(path) && (path.ToLower().EndsWith(".csv") || path.ToLower().EndsWith(".tsv"));
}
public void Prepare(string path, ContextObject context)
@@ -60,4 +60,4 @@ namespace QuickLook.Plugin.CsvViewer
_panel = null;
}
}
}
}

View File

@@ -49,7 +49,7 @@ namespace QuickLook.Plugin.ImageViewer
".sr2", ".srf", ".srw", ".svg",
".tga", ".tif", ".tiff",
".wdp", ".webp", ".wmf",
".x3f"
".x3f", ".xcf"
});
private ImagePanel _ip;