aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/i_insert.go1
-rw-r--r--src/i_ui.go2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/i_insert.go b/src/i_insert.go
index c3b2dfc..e6e7b13 100644
--- a/src/i_insert.go
+++ b/src/i_insert.go
@@ -64,4 +64,5 @@ func i_draw_insert_panel(ui HardUI, in *HostNode) {
i_draw_box(ui.s, win.L, win.T, win.R, win.B,
ui.style[STYLE_BOX], ui.style[STYLE_HEAD],
" Insert - " + in.Name + " ", true)
+ // TODO: here
}
diff --git a/src/i_ui.go b/src/i_ui.go
index 0c9f14c..6d24e6f 100644
--- a/src/i_ui.go
+++ b/src/i_ui.go
@@ -70,7 +70,7 @@ type HardUI struct {
}
type Quad struct {
- L, R, T, B int
+ L, T, R, B int
}
func i_left_right(text_len int, ui *HardUI) (int, int) {