Fix #12 and reduce visual flickering while switching preview target

This commit is contained in:
Paddy Xu
2017-05-17 20:32:25 +03:00
parent 464deb801d
commit 71dc0a29d9
8 changed files with 102 additions and 20 deletions

View File

@@ -5,6 +5,7 @@ using System.Linq;
using System.Reflection;
using QuickLook.ExtensionMethods;
using QuickLook.Plugin;
using QuickLook.Plugin.InfoPanel;
namespace QuickLook
{
@@ -17,7 +18,7 @@ namespace QuickLook
LoadPlugins();
}
internal IViewer DefaultPlugin { get; } = new Plugin.InfoPanel.PluginInterface();
internal IViewer DefaultPlugin { get; } = new PluginInterface();
internal List<IViewer> LoadedPlugins { get; private set; } = new List<IViewer>();