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="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 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.ComponentModel;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
@ -12,12 +12,12 @@ using MessageBox = System.Windows.MessageBox;
namespace Flow.Launcher.Plugin.Folder namespace Flow.Launcher.Plugin.Folder
{ {
public partial class FileSystemSettings public partial class FolderPluginSettings
{ {
private IPublicAPI flowlauncherAPI; private IPublicAPI flowlauncherAPI;
private Settings _settings; private Settings _settings;
public FileSystemSettings(IPublicAPI flowlauncherAPI, Settings settings) public FolderPluginSettings(IPublicAPI flowlauncherAPI, Settings settings)
{ {
this.flowlauncherAPI = flowlauncherAPI; this.flowlauncherAPI = flowlauncherAPI;
InitializeComponent(); InitializeComponent();

View file

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