Update module github.com/gdamore/tcell/v2 to v2.7.0 #16

Merged
alazyreader merged 2 commits from renovate/github.com-gdamore-tcell-v2-2.x into master 2023-12-24 20:06:45 +00:00
Showing only changes of commit 878635450c - Show all commits

View File

@ -82,6 +82,10 @@ func (m *MockScreen) EnablePaste() {}
func (m *MockScreen) DisablePaste() {}
func (m *MockScreen) EnableFocus() {}
func (m *MockScreen) DisableFocus() {}
func (m *MockScreen) HasMouse() bool {
return false
}
@ -122,6 +126,12 @@ func (m *MockScreen) Beep() error {
return nil
}
func (m *MockScreen) LockRegion(x, y, width, height int, lock bool) {}
func (m *MockScreen) Tty() (tcell.Tty, bool) {
return nil, false
}
func (m *MockScreen) DumpContents() string {
var res string
for i := m.y; i < m.h; i++ {