Rewind dialog - slight fix up to buffer options UI to make it less confusing, add to context menu config sub-menu
This commit is contained in:
parent
0826def34f
commit
72c4b98954
|
@ -342,6 +342,7 @@
|
|||
this.pathsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.soundToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.autofireToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.rewindToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.cmiScreenshot = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.cmiScreenshotClipboard = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.cmiCloseRom = new System.Windows.Forms.ToolStripMenuItem();
|
||||
|
@ -1380,7 +1381,7 @@
|
|||
this.rewindOptionsToolStripMenuItem.Image = global::BizHawk.MultiClient.Properties.Resources.Previous;
|
||||
this.rewindOptionsToolStripMenuItem.Name = "rewindOptionsToolStripMenuItem";
|
||||
this.rewindOptionsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
||||
this.rewindOptionsToolStripMenuItem.Text = "Rewind...";
|
||||
this.rewindOptionsToolStripMenuItem.Text = "&Rewind...";
|
||||
this.rewindOptionsToolStripMenuItem.Click += new System.EventHandler(this.rewindOptionsToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStripSeparator9
|
||||
|
@ -2925,7 +2926,8 @@
|
|||
this.messagesToolStripMenuItem1,
|
||||
this.pathsToolStripMenuItem1,
|
||||
this.soundToolStripMenuItem1,
|
||||
this.autofireToolStripMenuItem1});
|
||||
this.autofireToolStripMenuItem1,
|
||||
this.rewindToolStripMenuItem});
|
||||
this.configToolStripMenuItem1.Name = "configToolStripMenuItem1";
|
||||
this.configToolStripMenuItem1.Size = new System.Drawing.Size(216, 22);
|
||||
this.configToolStripMenuItem1.Text = "Config";
|
||||
|
@ -2978,6 +2980,14 @@
|
|||
this.autofireToolStripMenuItem1.Text = "&Autofire...";
|
||||
this.autofireToolStripMenuItem1.Click += new System.EventHandler(this.autofireToolStripMenuItem1_Click);
|
||||
//
|
||||
// rewindToolStripMenuItem
|
||||
//
|
||||
this.rewindToolStripMenuItem.Image = global::BizHawk.MultiClient.Properties.Resources.Previous;
|
||||
this.rewindToolStripMenuItem.Name = "rewindToolStripMenuItem";
|
||||
this.rewindToolStripMenuItem.Size = new System.Drawing.Size(141, 22);
|
||||
this.rewindToolStripMenuItem.Text = "&Rewind";
|
||||
this.rewindToolStripMenuItem.Click += new System.EventHandler(this.rewindOptionsToolStripMenuItem_Click);
|
||||
//
|
||||
// cmiScreenshot
|
||||
//
|
||||
this.cmiScreenshot.Image = global::BizHawk.MultiClient.Properties.Resources.camera;
|
||||
|
@ -3364,6 +3374,7 @@
|
|||
private System.Windows.Forms.ToolStripMenuItem soundToolStripMenuItem1;
|
||||
private System.Windows.Forms.ToolStripMenuItem autofireToolStripMenuItem1;
|
||||
private System.Windows.Forms.ToolStripMenuItem rewindOptionsToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem rewindToolStripMenuItem;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -320,7 +320,7 @@
|
|||
// UseDeltaCompression
|
||||
//
|
||||
this.UseDeltaCompression.AutoSize = true;
|
||||
this.UseDeltaCompression.Location = new System.Drawing.Point(9, 61);
|
||||
this.UseDeltaCompression.Location = new System.Drawing.Point(9, 39);
|
||||
this.UseDeltaCompression.Name = "UseDeltaCompression";
|
||||
this.UseDeltaCompression.Size = new System.Drawing.Size(133, 17);
|
||||
this.UseDeltaCompression.TabIndex = 4;
|
||||
|
@ -490,7 +490,7 @@
|
|||
// label4
|
||||
//
|
||||
this.label4.AutoSize = true;
|
||||
this.label4.Location = new System.Drawing.Point(126, 39);
|
||||
this.label4.Location = new System.Drawing.Point(148, 70);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Size = new System.Drawing.Size(21, 13);
|
||||
this.label4.TabIndex = 16;
|
||||
|
@ -498,7 +498,7 @@
|
|||
//
|
||||
// BufferSizeUpDown
|
||||
//
|
||||
this.BufferSizeUpDown.Location = new System.Drawing.Point(73, 37);
|
||||
this.BufferSizeUpDown.Location = new System.Drawing.Point(90, 68);
|
||||
this.BufferSizeUpDown.Maximum = new decimal(new int[] {
|
||||
32768,
|
||||
0,
|
||||
|
@ -521,20 +521,20 @@
|
|||
// label3
|
||||
//
|
||||
this.label3.AutoSize = true;
|
||||
this.label3.Location = new System.Drawing.Point(25, 39);
|
||||
this.label3.Location = new System.Drawing.Point(11, 70);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Size = new System.Drawing.Size(51, 13);
|
||||
this.label3.Size = new System.Drawing.Size(81, 13);
|
||||
this.label3.TabIndex = 6;
|
||||
this.label3.Text = "Max size:";
|
||||
this.label3.Text = "Max buffer size:";
|
||||
//
|
||||
// DiskBufferCheckbox
|
||||
//
|
||||
this.DiskBufferCheckbox.AutoSize = true;
|
||||
this.DiskBufferCheckbox.Location = new System.Drawing.Point(9, 16);
|
||||
this.DiskBufferCheckbox.Name = "DiskBufferCheckbox";
|
||||
this.DiskBufferCheckbox.Size = new System.Drawing.Size(112, 17);
|
||||
this.DiskBufferCheckbox.Size = new System.Drawing.Size(188, 17);
|
||||
this.DiskBufferCheckbox.TabIndex = 5;
|
||||
this.DiskBufferCheckbox.Text = "Use disk for buffer";
|
||||
this.DiskBufferCheckbox.Text = "Use disk for buffer instead of RAM";
|
||||
this.DiskBufferCheckbox.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// RewindConfig
|
||||
|
|
Loading…
Reference in New Issue