diff --git a/SnakeTail/TailConfigForm.Designer.cs b/SnakeTail/TailConfigForm.Designer.cs index 0492063..b96db95 100644 --- a/SnakeTail/TailConfigForm.Designer.cs +++ b/SnakeTail/TailConfigForm.Designer.cs @@ -275,17 +275,18 @@ private void InitializeComponent() // // _bookmarkTextColorBtn // - this._bookmarkTextColorBtn.Location = new System.Drawing.Point(199, 69); + this._bookmarkTextColorBtn.Location = new System.Drawing.Point(199, 98); this._bookmarkTextColorBtn.Name = "_bookmarkTextColorBtn"; this._bookmarkTextColorBtn.Size = new System.Drawing.Size(125, 23); this._bookmarkTextColorBtn.TabIndex = 18; this._bookmarkTextColorBtn.Text = "Bookmark Text Color"; this._bookmarkTextColorBtn.UseVisualStyleBackColor = true; + this._bookmarkTextColorBtn.Click += new System.EventHandler(this._bookmarkTextColorBtn_Click); // // _textColorBtn // this._textColorBtn.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this._textColorBtn.Location = new System.Drawing.Point(11, 69); + this._textColorBtn.Location = new System.Drawing.Point(11, 98); this._textColorBtn.Name = "_textColorBtn"; this._textColorBtn.Size = new System.Drawing.Size(125, 23); this._textColorBtn.TabIndex = 17; @@ -295,7 +296,7 @@ private void InitializeComponent() // // _bookmarkBackColorBtn // - this._bookmarkBackColorBtn.Location = new System.Drawing.Point(199, 98); + this._bookmarkBackColorBtn.Location = new System.Drawing.Point(199, 127); this._bookmarkBackColorBtn.Name = "_bookmarkBackColorBtn"; this._bookmarkBackColorBtn.Size = new System.Drawing.Size(125, 23); this._bookmarkBackColorBtn.TabIndex = 16; @@ -339,7 +340,7 @@ private void InitializeComponent() // // _textFontBtn // - this._textFontBtn.Location = new System.Drawing.Point(11, 98); + this._textFontBtn.Location = new System.Drawing.Point(11, 69); this._textFontBtn.Name = "_textFontBtn"; this._textFontBtn.Size = new System.Drawing.Size(125, 23); this._textFontBtn.TabIndex = 3; diff --git a/SnakeTail/TailConfigForm.cs b/SnakeTail/TailConfigForm.cs index 7d7fe3d..5d37292 100644 --- a/SnakeTail/TailConfigForm.cs +++ b/SnakeTail/TailConfigForm.cs @@ -112,6 +112,7 @@ private void TailConfigForm_Load(object sender, EventArgs e) _tabControl.TabPages.Remove(_tabPageExtTools); _applyAllBtn.Visible = false; _bookmarkBackColorBtn.Visible = false; + _bookmarkTextColorBtn.Visible = false; } }