Made 3D views editable while printing (if not the embedded view).

Made the eeprom windows have the correct tab stops.
This commit is contained in:
larsbrubaker 2014-07-02 13:28:51 -07:00
parent 264590b78d
commit b75ae71d24
5 changed files with 69 additions and 13 deletions

View file

@ -166,6 +166,18 @@ namespace MatterHackers.MatterControl
UiThread.RunOnIdle(OnIdle);
}
public override int TabIndex
{
get
{
return base.TabIndex;
}
set
{
actuallNumberEdit.TabIndex = value;
}
}
void InternalTextEditWidget_EditComplete(object sender, EventArgs e)
{
timeSinceLastTextChanged.Stop();