make sure we can show a wizard outside of the staged wizard
issue: MatterHackers/MCCentral#5221 Load/Unload buttons do not work
This commit is contained in:
parent
09d0d08499
commit
86a8603b20
1 changed files with 14 additions and 1 deletions
|
|
@ -55,7 +55,20 @@ namespace MatterHackers.MatterControl
|
|||
|
||||
public PrinterConfig Printer => printer;
|
||||
|
||||
public WizardPage Current => pages.Current;
|
||||
public WizardPage Current
|
||||
{
|
||||
get
|
||||
{
|
||||
if (pages == null)
|
||||
{
|
||||
// Reset enumerator, move to first item
|
||||
this.Reset();
|
||||
this.MoveNext();
|
||||
}
|
||||
|
||||
return pages.Current;
|
||||
}
|
||||
}
|
||||
|
||||
object IEnumerator.Current => pages.Current;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue