mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change Constants class visibility to internal
This commit is contained in:
parent
b5e9ec3a9f
commit
03bcef56e2
1 changed files with 9 additions and 7 deletions
|
|
@ -1,16 +1,18 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Flow.Launcher.Plugin.Explorer.Search
|
||||
{
|
||||
public static class Constants
|
||||
internal static class Constants
|
||||
{
|
||||
public const string FolderImagePath = "Images\\folder.png";
|
||||
public const string FileImagePath = "Images\\file.png";
|
||||
public const string DeleteFileFolderImagePath = "Images\\deletefilefolder.png";
|
||||
public const string CopyImagePath = "Images\\copy.png";
|
||||
public const string IndexImagePath = "Images\\index.png";
|
||||
internal const string FolderImagePath = "Images\\folder.png";
|
||||
internal const string FileImagePath = "Images\\file.png";
|
||||
internal const string DeleteFileFolderImagePath = "Images\\deletefilefolder.png";
|
||||
internal const string CopyImagePath = "Images\\copy.png";
|
||||
internal const string IndexImagePath = "Images\\index.png";
|
||||
|
||||
internal const string DefaultFolderSubtitleString = "Ctrl + Enter to open the directory";
|
||||
|
||||
internal static readonly char[] SpecialSearchChars = new char[]
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue