mirror of
https://github.com/Novetus/Novetus_src.git
synced 2025-01-31 17:53:01 +02:00
small detail
This commit is contained in:
parent
cefb9a1efb
commit
254199e9c1
@ -111,6 +111,7 @@
|
||||
this.URLOverrideBox.Size = new System.Drawing.Size(121, 20);
|
||||
this.URLOverrideBox.TabIndex = 25;
|
||||
this.URLOverrideBox.Click += new System.EventHandler(this.URLOverrideBox_Click);
|
||||
this.URLOverrideBox.TextChanged += new System.EventHandler(this.URLOverrideBox_TextChanged);
|
||||
//
|
||||
// URLListLabel
|
||||
//
|
||||
|
@ -266,6 +266,18 @@ public partial class AssetSDK : Form
|
||||
hasOverrideWarningOpenedOnce = true;
|
||||
}
|
||||
}
|
||||
|
||||
private void URLOverrideBox_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (!string.IsNullOrWhiteSpace(URLOverrideBox.Text))
|
||||
{
|
||||
AssetDownloader_URLSelection.Enabled = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
AssetDownloader_URLSelection.Enabled = true;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Asset Localizer
|
||||
|
Loading…
Reference in New Issue
Block a user