Minor UI UX polish

This commit is contained in:
n00mkrad
2023-02-21 12:02:53 +01:00
parent 42fd89437e
commit 2b864393a7
2 changed files with 6 additions and 2 deletions

View File

@@ -507,9 +507,9 @@
this.statusLabel.Location = new System.Drawing.Point(8, 30); this.statusLabel.Location = new System.Drawing.Point(8, 30);
this.statusLabel.Margin = new System.Windows.Forms.Padding(8, 0, 3, 0); this.statusLabel.Margin = new System.Windows.Forms.Padding(8, 0, 3, 0);
this.statusLabel.Name = "statusLabel"; this.statusLabel.Name = "statusLabel";
this.statusLabel.Size = new System.Drawing.Size(38, 13); this.statusLabel.Size = new System.Drawing.Size(61, 13);
this.statusLabel.TabIndex = 7; this.statusLabel.TabIndex = 7;
this.statusLabel.Text = "Ready"; this.statusLabel.Text = "Initializing...";
// //
// updateBtn // updateBtn
// //

View File

@@ -351,6 +351,7 @@ namespace Flowframes.Forms.Main
{ {
_initialized = true; _initialized = true;
runBtn.Enabled = true; runBtn.Enabled = true;
SetStatus("Ready");
} }
private void browseInputBtn_Click(object sender, EventArgs e) private void browseInputBtn_Click(object sender, EventArgs e)
@@ -380,7 +381,10 @@ namespace Flowframes.Forms.Main
public async void runBtn_Click(object sender, EventArgs e) public async void runBtn_Click(object sender, EventArgs e)
{ {
if (Interpolate.currentMediaFile == null || !Interpolate.currentMediaFile.Initialized) if (Interpolate.currentMediaFile == null || !Interpolate.currentMediaFile.Initialized)
{
SetTab(interpOptsTab.Name);
return; return;
}
ValidateFactor(); ValidateFactor();