1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-15 01:34:26 +02:00

Point tcell at stefanhaller's fork

This is temporary as long as https://github.com/gdamore/tcell/pull/599 is not
merged. Once that PR is merged, we can revert this.
This commit is contained in:
Stefan Haller
2023-07-26 19:30:22 +02:00
parent f7bf125037
commit 4aca854b59
10 changed files with 131 additions and 3 deletions

View File

@ -325,6 +325,12 @@ func (s *simscreen) DisablePaste() {
s.paste = false
}
func (s *simscreen) EnableFocus() {
}
func (s *simscreen) DisableFocus() {
}
func (s *simscreen) Size() (int, int) {
s.Lock()
w, h := s.back.Size()