Made lots of windows stay on top of the main window.

Fixed a bug with the close menu item and the terminal window being open.
This commit is contained in:
Lars Brubaker 2014-12-17 10:30:45 -08:00
parent c79156df87
commit ef20f2e65a
9 changed files with 10 additions and 2 deletions

View file

@ -48,7 +48,6 @@ using MatterHackers.Localizations;
namespace MatterHackers.MatterControl.ContactForm
{
public class ContactFormWidget : GuiWidget
{
protected TextImageButtonFactory textImageButtonFactory = new TextImageButtonFactory();
@ -336,6 +335,7 @@ namespace MatterHackers.MatterControl.ContactForm
private ContactFormWindow(string subject = "", string bodyText = "")
: base(500, 550)
{
AlwaysOnTopOfMain = true;
Title = LocalizedString.Get("MatterControl: Submit an Issue");
BackgroundColor = ActiveTheme.Instance.PrimaryBackgroundColor;