diff options
Diffstat (limited to 'treeAdd.go')
| -rw-r--r-- | treeAdd.go | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -47,7 +47,6 @@ func addWidget(n *tree.Node) { case widget.Window: tk.frame = false tk.labelN = tk.GetText() + " X" - // tk.color = &colorWindow tk.setColor(&colorWindow) me.newWindowTrigger <- tk redoWindows(0, 0) @@ -66,12 +65,10 @@ func addWidget(n *tree.Node) { tk.setColorButton() return case widget.Checkbox: - // tk.color = &colorCheckbox tk.setColorInput() tk.labelN = "X " + n.State.Label return case widget.Dropdown: - // tk.color = &colorDropdown tk.setColorInput() return case widget.Textbox: @@ -93,11 +90,10 @@ func addWidget(n *tree.Node) { setFake(n) return case widget.Group: - // tk.color = &colorLabel tk.frame = false return case widget.Label: - tk.color = &colorLabel + tk.setColorLabel() tk.frame = false return default: |
