Folder plugin- fix namespace name

This commit is contained in:
Jeremy Wu 2020-04-30 18:55:52 +10:00
parent d1328f41ca
commit 4e3980fd45
3 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
<UserControl x:Class="Flow.Launcher.Plugin.Folder.FileSystemSettings"
<UserControl x:Class="Flow.Launcher.Plugin.Folder.FolderPluginSettings"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
@ -12,12 +12,12 @@ using MessageBox = System.Windows.MessageBox;
namespace Flow.Launcher.Plugin.Folder
{
public partial class FileSystemSettings
public partial class FolderPluginSettings
{
private IPublicAPI flowlauncherAPI;
private Settings _settings;
public FileSystemSettings(IPublicAPI flowlauncherAPI, Settings settings)
public FolderPluginSettings(IPublicAPI flowlauncherAPI, Settings settings)
{
this.flowlauncherAPI = flowlauncherAPI;
InitializeComponent();

View file

@ -40,7 +40,7 @@ namespace Flow.Launcher.Plugin.Folder
public Control CreateSettingPanel()
{
return new FileSystemSettings(_context.API, _settings);
return new FolderPluginSettings(_context.API, _settings);
}
public void Init(PluginInitContext context)