Minor fixes.

exenoupdates. Macro preset open file. DS4 tick interval increased
This commit is contained in:
Travis Nickles 2019-10-11 07:29:04 -05:00
parent 237d819b4c
commit 82c3882bb1
4 changed files with 568 additions and 625 deletions

View File

@ -88,6 +88,7 @@
this.lVMacros.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.cHMacro});
this.lVMacros.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
this.lVMacros.HideSelection = false;
this.lVMacros.LargeImageList = this.iLKeys;
this.lVMacros.MultiSelect = false;
this.lVMacros.Name = "lVMacros";
@ -166,15 +167,15 @@
//
// pBRtouch
//
resources.ApplyResources(this.pBRtouch, "pBRtouch");
this.pBRtouch.Image = global::DS4Windows.Properties.Resources.right_touch;
resources.ApplyResources(this.pBRtouch, "pBRtouch");
this.pBRtouch.Name = "pBRtouch";
this.pBRtouch.TabStop = false;
//
// pBLtouch
//
resources.ApplyResources(this.pBLtouch, "pBLtouch");
this.pBLtouch.Image = global::DS4Windows.Properties.Resources.left_touch;
resources.ApplyResources(this.pBLtouch, "pBLtouch");
this.pBLtouch.Name = "pBLtouch";
this.pBLtouch.TabStop = false;
//
@ -227,7 +228,6 @@
//
// openPresets
//
this.openPresets.FileName = "openFileDialog1";
resources.ApplyResources(this.openPresets, "openPresets");
//
// lbMacroOrder
@ -242,24 +242,24 @@
//
// cMSLoadPresets
//
resources.ApplyResources(this.cMSLoadPresets, "cMSLoadPresets");
this.cMSLoadPresets.ImageScalingSize = new System.Drawing.Size(20, 20);
this.cMSLoadPresets.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.altTabToolStripMenuItem,
this.fromFileToolStripMenuItem});
this.cMSLoadPresets.Name = "cMSLoadPresets";
this.cMSLoadPresets.ShowImageMargin = false;
resources.ApplyResources(this.cMSLoadPresets, "cMSLoadPresets");
//
// altTabToolStripMenuItem
//
resources.ApplyResources(this.altTabToolStripMenuItem, "altTabToolStripMenuItem");
this.altTabToolStripMenuItem.Name = "altTabToolStripMenuItem";
resources.ApplyResources(this.altTabToolStripMenuItem, "altTabToolStripMenuItem");
this.altTabToolStripMenuItem.Click += new System.EventHandler(this.altTabToolStripMenuItem_Click);
//
// fromFileToolStripMenuItem
//
resources.ApplyResources(this.fromFileToolStripMenuItem, "fromFileToolStripMenuItem");
this.fromFileToolStripMenuItem.Name = "fromFileToolStripMenuItem";
resources.ApplyResources(this.fromFileToolStripMenuItem, "fromFileToolStripMenuItem");
this.fromFileToolStripMenuItem.Click += new System.EventHandler(this.fromFileToolStripMenuItem_Click);
//
// RecordBox

View File

@ -42,7 +42,7 @@ namespace DS4Windows.Forms
AddtoDS4List();
//ds4.Tick += ds4_Tick;
ds4.Elapsed += Ds4_Tick;
ds4.Interval = 1;
ds4.Interval = 10;
if (kbm.macrostag.Count > 0)
{
macros.AddRange(kbm.macrostag);
@ -66,7 +66,7 @@ namespace DS4Windows.Forms
//ds4.Tick += ds4_Tick;
ds4.Elapsed += Ds4_Tick;
ds4.Interval = 1;
ds4.Interval = 10;
lbRecordTip.Visible = false;
cBStyle.Visible = false;
pnlMouseButtons.Location = new Point(pnlMouseButtons.Location.X, pnlMouseButtons.Location.Y - 75);

File diff suppressed because it is too large Load Diff

View File

@ -73,7 +73,7 @@ namespace DS4Windows.Forms
if (File.Exists(exepath + $"\\{InstFileName}"))
{
bnStep1.Text = Properties.Resources.OpeningInstaller;
monitorProc = Process.Start(exepath + $"\\{InstFileName}");
monitorProc = Process.Start(exepath + $"\\{InstFileName}", "/exenoupdates");
bnStep1.Text = Properties.Resources.Installing;
}