fix for TPC gauge to use config settings

This commit is contained in:
Jos de Bruijn
2016-03-25 12:36:31 -07:00
parent d583a88df7
commit f8bbe6f61f
3 changed files with 5 additions and 1 deletions
@@ -174,7 +174,7 @@
this.txtMaxTPS.Size = new System.Drawing.Size(99, 20);
this.txtMaxTPS.TabIndex = 37;
this.txtMaxTPS.TabStop = false;
this.txtMaxTPS.Text = "70";
this.txtMaxTPS.Text = Program.MAX_TPS.ToString();
//
// lblRunningThread
//
@@ -53,6 +53,7 @@ namespace DemoWorkload
public FrmMain()
{
InitializeComponent();
uiControls.speedDial.MaxValue = Program.MAX_TPS;
}
delegate void SetInt64Callback(Int64 value);