Skip to content
This repository was archived by the owner on Jul 1, 2024. It is now read-only.

Commit 5c2c897

Browse files
committed
Registry path now automatically replaces '/' with '\'
Floats now aren't rounded when editing keys Fixed error with dump saving (argument could be invalid if the path had spaces)
1 parent 21bd659 commit 5c2c897

7 files changed

Lines changed: 346 additions & 356 deletions

File tree

CustomControls/Color32Renderer.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Drawing;
4-
using System.Linq;
5-
using System.Text;
6-
using System.Threading.Tasks;
7-
using System.Windows.Forms;
1+
using System.Drawing;
82
using BrightIdeasSoftware;
93
using static CodeStage_Decrypter.EncrypterDecrypter;
104

CustomControls/ColorPicker.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Drawing;
43
using System.Windows.Forms;
5-
using static CodeStage_Decrypter.EncrypterDecrypter;
64
using Color = System.Drawing.Color;
75
using UColor = CodeStage_Decrypter.EncrypterDecrypter.Color32;
86

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using BrightIdeasSoftware;
2+
using System;
3+
using System.Collections.Generic;
4+
using System.Linq;
5+
using System.Text;
6+
using System.Threading.Tasks;
7+
8+
namespace CodeStage_Decrypter
9+
{
10+
public class CustomFloatCellEditor : FloatCellEditor
11+
{
12+
public CustomFloatCellEditor() : base()
13+
{
14+
base.DecimalPlaces = 10;
15+
base.Minimum = -9999999m;
16+
base.Maximum = 9999999m;
17+
}
18+
}
19+
}

DecrypterEncrypter

0 commit comments

Comments
 (0)