mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-12-24 02:00:55 +08:00
remove transparent window
This commit is contained in:
@@ -30,7 +30,6 @@ namespace QuickLook.Plugin.ArchiveViewer
|
||||
private ArchiveInfoPanel _panel;
|
||||
|
||||
public int Priority => 0;
|
||||
public bool AllowsTransparency => true;
|
||||
|
||||
public void Init()
|
||||
{
|
||||
|
||||
@@ -26,7 +26,6 @@ namespace QuickLook.Plugin.CsvViewer
|
||||
private CsvViewerPanel _panel;
|
||||
|
||||
public int Priority => int.MaxValue;
|
||||
public bool AllowsTransparency => true;
|
||||
|
||||
public void Init()
|
||||
{
|
||||
|
||||
@@ -30,7 +30,6 @@ namespace QuickLook.Plugin.HtmlViewer
|
||||
private WebpagePanel _panel;
|
||||
|
||||
public int Priority => int.MaxValue;
|
||||
public bool AllowsTransparency => false;
|
||||
|
||||
public void Init()
|
||||
{
|
||||
|
||||
@@ -36,7 +36,6 @@ namespace QuickLook.Plugin.IPreviewHandlers
|
||||
private PreviewPanel _panel;
|
||||
|
||||
public int Priority => int.MaxValue;
|
||||
public bool AllowsTransparency => false;
|
||||
|
||||
public void Init()
|
||||
{
|
||||
|
||||
@@ -42,7 +42,6 @@ namespace QuickLook.Plugin.ImageViewer
|
||||
private ImagePanel _ip;
|
||||
|
||||
public int Priority => int.MaxValue;
|
||||
public bool AllowsTransparency => true;
|
||||
|
||||
public void Init()
|
||||
{
|
||||
|
||||
@@ -31,7 +31,6 @@ namespace QuickLook.Plugin.MailViewer
|
||||
private string _tmpDir = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
|
||||
|
||||
public int Priority => int.MaxValue;
|
||||
public bool AllowsTransparency => false;
|
||||
|
||||
public void Init()
|
||||
{
|
||||
|
||||
@@ -30,7 +30,6 @@ namespace QuickLook.Plugin.MarkdownViewer
|
||||
private WebpagePanel _panel;
|
||||
|
||||
public int Priority => int.MaxValue;
|
||||
public bool AllowsTransparency => false;
|
||||
|
||||
public void Init()
|
||||
{
|
||||
|
||||
@@ -30,7 +30,6 @@ namespace QuickLook.Plugin.PDFViewer
|
||||
private PdfViewerControl _pdfControl;
|
||||
|
||||
public int Priority => int.MaxValue;
|
||||
public bool AllowsTransparency => true;
|
||||
|
||||
public void Init()
|
||||
{
|
||||
|
||||
@@ -26,7 +26,6 @@ namespace QuickLook.Plugin.TextViewer
|
||||
private TextViewerPanel _tvp;
|
||||
|
||||
public int Priority => 0;
|
||||
public bool AllowsTransparency => true;
|
||||
|
||||
public void Init()
|
||||
{
|
||||
|
||||
@@ -44,7 +44,6 @@ namespace QuickLook.Plugin.VideoViewer
|
||||
private FFprobe probe;
|
||||
|
||||
public int Priority => 0 - 10; // make it lower than TextViewer
|
||||
public bool AllowsTransparency => false;
|
||||
|
||||
public void Init()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user