Skip to content

Commit

Permalink
Removed toggle use content pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
vchelaru committed Feb 19, 2024
1 parent a545b03 commit 4e11f2d
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions FRBDK/Glue/Glue/FormHelpers/RightClickHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -478,8 +478,6 @@ public static class RightClickHelper

static GeneralToolStripMenuItem mFillValuesFromDefault;

static GeneralToolStripMenuItem mUseContentPipeline;

static GeneralToolStripMenuItem mRemoveFromProjectQuick;
static GeneralToolStripMenuItem mCreateNewFileForMissingFile;

Expand Down Expand Up @@ -852,13 +850,6 @@ private static void PopulateRightClickMenuItemsShared(ITreeNode targetNode, Menu
AddRemoveFromProjectItems();
}

if (rfs.IsCreatedByWildcard == false)
{
AddItem(mUseContentPipeline);
}
//AddItem(form.openWithDEFAULTToolStripMenuItem);


if (FileManager.GetExtension(rfs.Name) == "csv" || rfs.TreatAsCsv)
{
AddSeparator();
Expand Down Expand Up @@ -1279,15 +1270,9 @@ public static void Initialize()
mRemoveFromProjectQuick = new GeneralToolStripMenuItem(L.Texts.RemoveFromProjectQuick);
mRemoveFromProjectQuick.Click += RemoveFromProjectQuick;

mUseContentPipeline = new GeneralToolStripMenuItem(L.Texts.PipelineContentToggle);
mUseContentPipeline.Click += mUseContentPipeline_Click;

mCreateNewFileForMissingFile = new GeneralToolStripMenuItem(L.Texts.FileCreateForMissing);
mCreateNewFileForMissingFile.Click += CreateNewFileForMissingFileClick;

mViewFileLoadOrder = new GeneralToolStripMenuItem(L.Texts.ViewFileOrder);
mViewFileLoadOrder.Click += ViewFileOrderClick;

mCreateZipPackage = new GeneralToolStripMenuItem(L.Texts.ZipPackageCreate);
mCreateZipPackage.Click += CreateZipPackageClick;

Expand Down Expand Up @@ -1535,12 +1520,6 @@ static void mFillValuesFromVariables_Click(object sender, EventArgs e)
}
}

static void mUseContentPipeline_Click(object sender, EventArgs e)
{
ReferencedFileSave rfs = GlueState.Self.CurrentReferencedFileSave;

}

static void AddStateClick(object sender, EventArgs e)
{
GlueCommands.Self.DialogCommands.ShowAddNewStateDialog();
Expand Down

0 comments on commit 4e11f2d

Please sign in to comment.