Debugger: Fixed "scanline" field (tilemap viewer) not working with arrow keys
This commit is contained in:
parent
10b76545d6
commit
9f29e86e2a
1 changed files with 4 additions and 4 deletions
|
@ -64,22 +64,22 @@
|
||||||
this.nudScanline.Anchor = System.Windows.Forms.AnchorStyles.Left;
|
this.nudScanline.Anchor = System.Windows.Forms.AnchorStyles.Left;
|
||||||
this.nudScanline.DecimalPlaces = 0;
|
this.nudScanline.DecimalPlaces = 0;
|
||||||
this.nudScanline.Increment = new decimal(new int[] {
|
this.nudScanline.Increment = new decimal(new int[] {
|
||||||
0,
|
1,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
0});
|
0});
|
||||||
this.nudScanline.Location = new System.Drawing.Point(144, 4);
|
this.nudScanline.Location = new System.Drawing.Point(144, 4);
|
||||||
this.nudScanline.Maximum = new decimal(new int[] {
|
this.nudScanline.Maximum = new decimal(new int[] {
|
||||||
260,
|
312,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
0});
|
0});
|
||||||
this.nudScanline.MaximumSize = new System.Drawing.Size(10000, 20);
|
this.nudScanline.MaximumSize = new System.Drawing.Size(10000, 20);
|
||||||
this.nudScanline.Minimum = new decimal(new int[] {
|
this.nudScanline.Minimum = new decimal(new int[] {
|
||||||
1,
|
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
-2147483648});
|
0,
|
||||||
|
0});
|
||||||
this.nudScanline.MinimumSize = new System.Drawing.Size(0, 21);
|
this.nudScanline.MinimumSize = new System.Drawing.Size(0, 21);
|
||||||
this.nudScanline.Name = "nudScanline";
|
this.nudScanline.Name = "nudScanline";
|
||||||
this.nudScanline.Size = new System.Drawing.Size(52, 21);
|
this.nudScanline.Size = new System.Drawing.Size(52, 21);
|
||||||
|
|
Loading…
Add table
Reference in a new issue