Bug Fixes

This commit is contained in:
2026-02-02 13:35:13 -06:00
parent 16a92c8f99
commit 5581cf14c1
4 changed files with 35 additions and 45 deletions

View File

@@ -58,7 +58,6 @@ func (w *BorderedWidget) Init(id string, s tcell.Style) {
w.style = s
w.widget.SetVisible(true)
w.border = wh.BRD_CSIMPLE
w.widget.SetFocusable(true)
}
func (w *BorderedWidget) Id() string { return w.id }
@@ -96,8 +95,6 @@ func (w *BorderedWidget) Active() bool { return w.widget.Active() }
func (w *BorderedWidget) SetActive(a bool) bool { return w.widget.SetActive(a) }
func (w *BorderedWidget) Visible() bool { return w.widget.Visible() }
func (w *BorderedWidget) SetVisible(a bool) { w.SetVisible(a) }
func (w *BorderedWidget) Focusable() bool { return w.widget.Focusable() }
func (w *BorderedWidget) SetFocusable(b bool) { w.widget.SetFocusable(b) }
func (w *BorderedWidget) SetX(x int) { w.x = x }
func (w *BorderedWidget) SetY(y int) { w.y = y }
func (w *BorderedWidget) GetX() int { return w.x }