Not sure why this changed?

This commit is contained in:
jeffman 2015-06-16 15:16:06 -04:00
parent 664765219c
commit 9292714ce2
1 changed files with 11 additions and 11 deletions

View File

@ -35,6 +35,7 @@
this.toolsMenu = new System.Windows.Forms.ToolStripMenuItem();
this.resolveDuplicateLabelsMenu = new System.Windows.Forms.ToolStripMenuItem();
this.checkCompletionMenu = new System.Windows.Forms.ToolStripMenuItem();
this.autosaveMenu = new System.Windows.Forms.ToolStripMenuItem();
this.topPanel = new System.Windows.Forms.FlowLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.collectionSelector = new System.Windows.Forms.ComboBox();
@ -64,7 +65,6 @@
this.statusBar = new System.Windows.Forms.StatusStrip();
this.writeLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.writeTimer = new System.Windows.Forms.Timer(this.components);
this.autosaveMenu = new System.Windows.Forms.ToolStripMenuItem();
this.mainMenu.SuspendLayout();
this.topPanel.SuspendLayout();
this.mainPanel.SuspendLayout();
@ -138,6 +138,16 @@
this.checkCompletionMenu.Text = "Check completion status...";
this.checkCompletionMenu.Click += new System.EventHandler(this.checkCompletionMenu_Click);
//
// autosaveMenu
//
this.autosaveMenu.Checked = true;
this.autosaveMenu.CheckOnClick = true;
this.autosaveMenu.CheckState = System.Windows.Forms.CheckState.Checked;
this.autosaveMenu.Name = "autosaveMenu";
this.autosaveMenu.Size = new System.Drawing.Size(214, 22);
this.autosaveMenu.Text = "Autosave";
this.autosaveMenu.Click += new System.EventHandler(this.autosaveMenu_Click);
//
// topPanel
//
this.topPanel.AutoSize = true;
@ -490,16 +500,6 @@
this.writeTimer.Interval = 10000;
this.writeTimer.Tick += new System.EventHandler(this.writeTimer_Tick);
//
// autosaveMenu
//
this.autosaveMenu.Checked = true;
this.autosaveMenu.CheckOnClick = true;
this.autosaveMenu.CheckState = System.Windows.Forms.CheckState.Checked;
this.autosaveMenu.Name = "autosaveMenu";
this.autosaveMenu.Size = new System.Drawing.Size(214, 22);
this.autosaveMenu.Text = "Autosave";
this.autosaveMenu.Click += new System.EventHandler(this.autosaveMenu_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);