Disable the text element toolbar by default

This commit is contained in:
Thorsten Sommer 2022-07-12 20:20:17 +02:00
parent 538dbe1707
commit 4767aae217
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -77,6 +77,7 @@
//
// buttonAdd
//
this.buttonAdd.Enabled = false;
this.buttonAdd.FlatAppearance.BorderSize = 0;
this.buttonAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.buttonAdd.Image = global::UI_WinForms.Resources.Icons.icons8_add_tag_512;
@ -89,6 +90,7 @@
//
// buttonRemove
//
this.buttonRemove.Enabled = false;
this.buttonRemove.FlatAppearance.BorderSize = 0;
this.buttonRemove.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.buttonRemove.Image = global::UI_WinForms.Resources.Icons.icons8_remove_tag_512;
@ -101,6 +103,7 @@
//
// buttonRename
//
this.buttonRename.Enabled = false;
this.buttonRename.FlatAppearance.BorderSize = 0;
this.buttonRename.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.buttonRename.Image = global::UI_WinForms.Resources.Icons.icons8_rename_512;