mirror of
https://github.com/QL-Win/QuickLook.git
synced 2026-03-18 01:01:57 +08:00
Merge branch 'master' of github.com:QL-Win/QuickLook
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -49,7 +49,7 @@ namespace QuickLook.Plugin.ImageViewer
|
||||
".sr2", ".srf", ".srw", ".svg",
|
||||
".tga", ".tif", ".tiff",
|
||||
".wdp", ".webp", ".wmf",
|
||||
".x3f"
|
||||
".x3f", ".xcf"
|
||||
});
|
||||
|
||||
private ImagePanel _ip;
|
||||
|
||||
Reference in New Issue
Block a user