Skip to content

Commit

Permalink
Merge pull request #35 from ogamespec/main
Browse files Browse the repository at this point in the history
The last vias when drawing with Shift + FormBulkRename
  • Loading branch information
ogamespec authored Sep 22, 2022
2 parents e3a97c7 + 6514fa6 commit 9981303
Show file tree
Hide file tree
Showing 13 changed files with 1,054 additions and 230 deletions.
2 changes: 1 addition & 1 deletion Deroute/About.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Deroute/About.resx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
<data name="pictureBox1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAArwAAADHCAIAAAB0ohc/AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
vQAADr0BR/uQrQAA/7JJREFUeF5s/QezJUmWmAcmZpYEwDVbgktil1hiscDM9GB6WlZ1qdTi6Xe1iBta
vAAADrwBlbxySQAA/7JJREFUeF5s/QezJUmWmAcmZpYEwDVbgktil1hiscDM9GB6WlZ1qdTi6Xe1iBta
a62u1uJpnS91ZcnMEqkzq7Iys7JETw8wHK4RHBLD5RhoJHd/yx6P+7K6Zpdmnx07cfz48eMe8eJ63Hc9
/Niv/+yrxVPvGoRtk6qY57EForJEGbTpi16kBrHmR6qHpO5FehAbYWQEoe4FqhuqLhRFihfJ4OnFqlfV
vJrmxqrtcopJiQYpWJRkMqIOOiUZpGRRSsCbgWCGggFEghnxpk9rHqlFjFVj3ZCyAtIOKDti7JCxfMpy
Expand Down
9 changes: 9 additions & 0 deletions Deroute/DerouteSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="FormBulkRename.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="FormBulkRename.Designer.cs">
<DependentUpon>FormBulkRename.cs</DependentUpon>
</Compile>
<Compile Include="FormCreateMLModel.cs">
<SubType>Form</SubType>
</Compile>
Expand Down Expand Up @@ -154,6 +160,9 @@
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="FormBulkRename.resx">
<DependentUpon>FormBulkRename.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="FormCreateMLModel.resx">
<DependentUpon>FormCreateMLModel.cs</DependentUpon>
</EmbeddedResource>
Expand Down
14 changes: 13 additions & 1 deletion Deroute/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion Deroute/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1279,6 +1279,12 @@ private void addViasAtTheWireEndsToolStripMenuItem_Click(object sender, EventArg
entityBox1.Invalidate();
}

private void bulkRenameToolStripMenuItem_Click(object sender, EventArgs e)
{
FormBulkRename form = new FormBulkRename(entityBox1);
form.ShowDialog();
}

#endregion


Expand Down Expand Up @@ -1501,7 +1507,6 @@ private void addLayerToolStripMenuItem_Click(object sender, EventArgs e)
entityBox1.AddLayer();
}


} // Form1


Expand Down
Loading

0 comments on commit 9981303

Please sign in to comment.