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

View File

@ -42,7 +42,7 @@ namespace DS4Windows.Forms
AddtoDS4List(); AddtoDS4List();
//ds4.Tick += ds4_Tick; //ds4.Tick += ds4_Tick;
ds4.Elapsed += Ds4_Tick; ds4.Elapsed += Ds4_Tick;
ds4.Interval = 1; ds4.Interval = 10;
if (kbm.macrostag.Count > 0) if (kbm.macrostag.Count > 0)
{ {
macros.AddRange(kbm.macrostag); macros.AddRange(kbm.macrostag);
@ -66,7 +66,7 @@ namespace DS4Windows.Forms
//ds4.Tick += ds4_Tick; //ds4.Tick += ds4_Tick;
ds4.Elapsed += Ds4_Tick; ds4.Elapsed += Ds4_Tick;
ds4.Interval = 1; ds4.Interval = 10;
lbRecordTip.Visible = false; lbRecordTip.Visible = false;
cBStyle.Visible = false; cBStyle.Visible = false;
pnlMouseButtons.Location = new Point(pnlMouseButtons.Location.X, pnlMouseButtons.Location.Y - 75); 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}")) if (File.Exists(exepath + $"\\{InstFileName}"))
{ {
bnStep1.Text = Properties.Resources.OpeningInstaller; bnStep1.Text = Properties.Resources.OpeningInstaller;
monitorProc = Process.Start(exepath + $"\\{InstFileName}"); monitorProc = Process.Start(exepath + $"\\{InstFileName}", "/exenoupdates");
bnStep1.Text = Properties.Resources.Installing; bnStep1.Text = Properties.Resources.Installing;
} }