2
2
using System . IO ;
3
3
using System . Collections ;
4
4
using System . Collections . Generic ;
5
- using System . Diagnostics ;
6
5
using System . Drawing ;
7
6
using System . Windows . Forms ;
8
7
using System . ComponentModel ;
9
8
using ProjectManager . Projects ;
10
- using ProjectManager . Projects . AS2 ;
11
9
using PluginCore . Localization ;
12
10
using PluginCore . Helpers ;
13
11
using PluginCore ;
@@ -23,7 +21,7 @@ namespace ProjectManager.Controls.TreeView
23
21
public class ProjectContextMenu : ContextMenuStrip
24
22
{
25
23
Project project ;
26
- ProjectTreeView projectTree ;
24
+ ProjectTreeView projectTree ;
27
25
static Image newFolderImg = Icons . Overlay ( Icons . Folder . Img , Icons . BulletAdd . Img , 5 , - 3 ) ;
28
26
public ToolStripMenuItem AddMenu = new ToolStripMenuItem ( TextHelper . GetString ( "Label.Add" ) ) ;
29
27
public ToolStripMenuItem AddNewFolder = new ToolStripMenuItem ( TextHelper . GetString ( "Label.NewFolder" ) , newFolderImg ) ;
@@ -69,7 +67,7 @@ public class ProjectContextMenu : ContextMenuStrip
69
67
public ProjectContextMenu ( )
70
68
{
71
69
this . Renderer = new DockPanelStripRenderer ( ) ;
72
- this . Font = PluginCore . PluginBase . Settings . DefaultFont ;
70
+ this . Font = PluginBase . Settings . DefaultFont ;
73
71
this . ImageScalingSize = ScaleHelper . Scale ( new Size ( 16 , 16 ) ) ;
74
72
NothingToDo . Enabled = false ;
75
73
NoProjectOutput . Enabled = false ;
@@ -480,7 +478,7 @@ private void AddFileItems(MergableMenu menu, string path, bool addPaste)
480
478
AddHideItems ( menu , path , 3 ) ;
481
479
}
482
480
483
- private void AddHideItems ( MergableMenu menu , string path , int group )
481
+ private void AddHideItems ( MergableMenu menu , string path , int group )
484
482
{
485
483
bool hidden = project . IsPathHidden ( path ) ;
486
484
bool showHidden = project . ShowHiddenPaths ;
0 commit comments