diff options
Diffstat (limited to 'window.go')
| -rw-r--r-- | window.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -15,6 +15,7 @@ func (tk *guiWidget) redrawWindow(w int, h int) { if tk.node.WidgetType != widget.Window { return } + tk.dumpWidget(fmt.Sprintf("redrawWindow(%d,%d)", w, h)) if tk.full.Height() > 40 { tk.window.dense = true } @@ -97,6 +98,7 @@ func redoWindows(nextW int, nextH int) { if tk.window.wasDragged { // don't move windows around the user has dragged to a certain location tk.redrawWindow(tk.gocuiSize.w0, tk.gocuiSize.h0) + setThingsOnTop() // sets help, Stdout, etc on the top after windows have been redrawn } else { w, _ := me.baseGui.Size() if nextW > w-20 { |
