summaryrefslogtreecommitdiffstats
path: root/src/tui/ncurses.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-04-28 22:58:08 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-04-28 22:58:08 +0900
commitd34e4cf6984a139c12646d21771526e1e2a6f4f7 (patch)
treed3124713871b7c62c3b1bbfe1e8a3347d96f20f0 /src/tui/ncurses.go
parent6b592137b966299a8a1324ccb1ddf3d6aaa7bbc9 (diff)
Support CTRL-Z (SIGSTOP)
Diffstat (limited to 'src/tui/ncurses.go')
-rw-r--r--src/tui/ncurses.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tui/ncurses.go b/src/tui/ncurses.go
index ba3a1cfb..3263c397 100644
--- a/src/tui/ncurses.go
+++ b/src/tui/ncurses.go
@@ -176,12 +176,11 @@ func initPairs(theme *ColorTheme) {
}
}
-func (r *FullscreenRenderer) Pause() {
+func (r *FullscreenRenderer) Pause(bool) {
C.endwin()
}
-func (r *FullscreenRenderer) Resume() bool {
- return false
+func (r *FullscreenRenderer) Resume(bool) {
}
func (r *FullscreenRenderer) Close() {