diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -128,6 +128,7 @@ type window struct { active bool // means this window is the active one isBG bool // means this is the background widget. There is only one of these order int // what level the window is on + resize bool // only set the title once } type guiWidget struct { @@ -154,7 +155,6 @@ type guiWidget struct { force rectType // force widget within these boundries (using this to debug window dragging) startW int // ? startH int // ? - isCurrent bool // is this the currently displayed Window or Tab? isFake bool // widget types like 'box' are 'false' widths map[int]int // how tall each row in the grid is heights map[int]int // how wide each column in the grid is @@ -162,8 +162,8 @@ type guiWidget struct { frame bool // ? selectedTab *tree.Node // for a window, this is currently selected tab color *colorT // what color to use - resize bool // the window is currently being resized - isBG bool // means this is the background widget. There is only one of these + // resize bool // the window is currently being resized + isBG bool // means this is the background widget. There is only one of these } // from the gocui devs: |
