Bug Fixes
This commit is contained in:
@@ -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 }
|
||||
|
||||
Reference in New Issue
Block a user