Not sure why this changed?
This commit is contained in:
parent
664765219c
commit
9292714ce2
|
@ -35,6 +35,7 @@
|
||||||
this.toolsMenu = new System.Windows.Forms.ToolStripMenuItem();
|
this.toolsMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.resolveDuplicateLabelsMenu = new System.Windows.Forms.ToolStripMenuItem();
|
this.resolveDuplicateLabelsMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.checkCompletionMenu = 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.topPanel = new System.Windows.Forms.FlowLayoutPanel();
|
||||||
this.label1 = new System.Windows.Forms.Label();
|
this.label1 = new System.Windows.Forms.Label();
|
||||||
this.collectionSelector = new System.Windows.Forms.ComboBox();
|
this.collectionSelector = new System.Windows.Forms.ComboBox();
|
||||||
|
@ -64,7 +65,6 @@
|
||||||
this.statusBar = new System.Windows.Forms.StatusStrip();
|
this.statusBar = new System.Windows.Forms.StatusStrip();
|
||||||
this.writeLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
this.writeLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
||||||
this.writeTimer = new System.Windows.Forms.Timer(this.components);
|
this.writeTimer = new System.Windows.Forms.Timer(this.components);
|
||||||
this.autosaveMenu = new System.Windows.Forms.ToolStripMenuItem();
|
|
||||||
this.mainMenu.SuspendLayout();
|
this.mainMenu.SuspendLayout();
|
||||||
this.topPanel.SuspendLayout();
|
this.topPanel.SuspendLayout();
|
||||||
this.mainPanel.SuspendLayout();
|
this.mainPanel.SuspendLayout();
|
||||||
|
@ -138,6 +138,16 @@
|
||||||
this.checkCompletionMenu.Text = "Check completion status...";
|
this.checkCompletionMenu.Text = "Check completion status...";
|
||||||
this.checkCompletionMenu.Click += new System.EventHandler(this.checkCompletionMenu_Click);
|
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
|
// topPanel
|
||||||
//
|
//
|
||||||
this.topPanel.AutoSize = true;
|
this.topPanel.AutoSize = true;
|
||||||
|
@ -490,16 +500,6 @@
|
||||||
this.writeTimer.Interval = 10000;
|
this.writeTimer.Interval = 10000;
|
||||||
this.writeTimer.Tick += new System.EventHandler(this.writeTimer_Tick);
|
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
|
// MainForm
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||||
|
|
Loading…
Reference in New Issue