mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 01:39:17 +01:00
Removed Form_Resize method for Options
This commit is contained in:
parent
f076752404
commit
9cc93f8128
@ -1462,6 +1462,7 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question
|
||||
opt.TopLevel = false;
|
||||
opt.Dock = DockStyle.Fill;
|
||||
opt.FormBorderStyle = FormBorderStyle.None;
|
||||
|
||||
tabProfiles.Controls.Add(opt);
|
||||
optPop = true;
|
||||
//opt.Dock = DockStyle.Fill;
|
||||
@ -1479,9 +1480,12 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question
|
||||
}
|
||||
|
||||
opt.Reload(devID, profile);
|
||||
|
||||
opt.inputtimer.Start();
|
||||
opt.Visible = true;
|
||||
|
||||
tabMain.SelectedIndex = 1;
|
||||
opt.SetFlowAutoScroll();
|
||||
}
|
||||
|
||||
public void OptionsClosed()
|
||||
@ -1510,7 +1514,6 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question
|
||||
opt.sixaxisTimer.Stop();
|
||||
opt.Dock = DockStyle.None;
|
||||
tabProfiles.Controls.Remove(opt);
|
||||
opt.Dispose();
|
||||
optPop = false;
|
||||
|
||||
lBProfiles.Visible = true;
|
||||
|
1
DS4Windows/DS4Forms/Options.Designer.cs
generated
1
DS4Windows/DS4Forms/Options.Designer.cs
generated
@ -4117,7 +4117,6 @@
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "Options";
|
||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Options_FormClosing);
|
||||
this.Resize += new System.EventHandler(this.Options_Resize);
|
||||
((System.ComponentModel.ISupportInitialize)(this.nUDRainbow)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.tBBlueBar)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.tBGreenBar)).EndInit();
|
||||
|
@ -142,6 +142,12 @@ namespace DS4Windows
|
||||
populateHoverLabelDict();
|
||||
}
|
||||
|
||||
public void SetFlowAutoScroll()
|
||||
{
|
||||
fLPSettings.AutoScroll = false;
|
||||
fLPSettings.AutoScroll = true;
|
||||
}
|
||||
|
||||
private void populateHoverIndexDict()
|
||||
{
|
||||
hoverIndexDict.Clear();
|
||||
@ -2987,12 +2993,6 @@ namespace DS4Windows
|
||||
e.Graphics.DrawImage(btnLightBgImg, new Rectangle(0, -1, Convert.ToInt32(btnLightbar.Width), Convert.ToInt32(btnLightbar.Height - 2)));
|
||||
}
|
||||
|
||||
private void Options_Resize(object sender, EventArgs e)
|
||||
{
|
||||
fLPSettings.AutoScroll = false;
|
||||
fLPSettings.AutoScroll = true;
|
||||
}
|
||||
|
||||
private void lBControls_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
int controlSelectedIndex = lBControls.SelectedIndex;
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user