mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-23 11:49:34 +01:00
Fix various issues with image sequence inputs & batch processing
This commit is contained in:
@@ -21,5 +21,14 @@ namespace Flowframes.Ui
|
||||
{
|
||||
LockWindowUpdate(IntPtr.Zero);
|
||||
}
|
||||
|
||||
public static List<Control> GetControls(this Control control)
|
||||
{
|
||||
List<Control> list = new List<Control>();
|
||||
var controls = control.Controls.Cast<Control>().ToList();
|
||||
list.AddRange(controls);
|
||||
controls.ForEach(c => list.AddRange(c.GetControls()));
|
||||
return list;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user