mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Folder plugin- fix namespace name
This commit is contained in:
parent
d1328f41ca
commit
4e3980fd45
3 changed files with 5 additions and 5 deletions
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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();
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue