summaryrefslogtreecommitdiff
path: root/widgetDraw.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-03-25 09:31:40 -0500
committerJeff Carr <[email protected]>2025-03-25 13:17:00 -0500
commitaaebb4c5d993aafe8b290055296c9aaa1fb1ea93 (patch)
tree2bbc22b83c112eaa05de852e1505ebe6bfbca24f /widgetDraw.go
parent36514cbb6818dd06e13b2dff20fa4f0ac67ce545 (diff)
table headers identified. ready for sorting
Diffstat (limited to 'widgetDraw.go')
-rw-r--r--widgetDraw.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/widgetDraw.go b/widgetDraw.go
index d678678..6da9fcd 100644
--- a/widgetDraw.go
+++ b/widgetDraw.go
@@ -223,17 +223,12 @@ func (tk *guiWidget) drawView() {
log.Log(INFO, "drawView() END")
}
+// redraw the widget tree starting at this location
func (w *guiWidget) DrawAt(offsetW, offsetH int) {
- // w.setColor(&colorActiveW)
w.placeWidgets(offsetW, offsetH) // compute the sizes & places for each widget
// w.dumpWidget(fmt.Sprintf("DrawAt(%d,%d)", offsetW, offsetH))
}
-func (w *guiWidget) simpleDrawAt(offsetW, offsetH int) {
- // w.setColor(&colorActiveW)
- w.dumpWidget("simpleDrawAt()")
-}
-
// display the widgets in the binary tree
func (w *guiWidget) drawTree(draw bool) {
if w == nil {