summaryrefslogtreecommitdiff
path: root/init.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-06 03:33:27 -0600
committerJeff Carr <[email protected]>2025-02-06 03:33:27 -0600
commit96cb52f3efdf16d966a7913db1cd4c9800da049f (patch)
tree3f741306a794df2a8bb1ede7bb6cf74ff38d8958 /init.go
parent9c548faedacfdfbda09d170c6665fcdb988bd877 (diff)
stdout window hides on startup
Diffstat (limited to 'init.go')
-rw-r--r--init.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/init.go b/init.go
index 03409c3..58d2ad2 100644
--- a/init.go
+++ b/init.go
@@ -204,6 +204,10 @@ func newWindowTrigger() {
log.Log(NOW, "newWindowTrigger() got new window", a)
time.Sleep(200 * time.Millisecond)
redoWindows(1, -1)
+ if !me.stdout.init {
+ me.stdout.init = true
+ relocateStdoutOffscreen()
+ }
log.Log(NOW, "newWindowTrigger() after sleep")
}
}