aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2024-02-21 20:20:20 +0100
committerJoe <rbo@gmx.us>2024-02-21 20:20:20 +0100
commitcb8958c4c3d37f48692fd6a54a1ac223e0bc60d6 (patch)
tree026dac60c86d5749fdaf88e4f74d647aab3c5975 /src
parentquad (diff)
downloadhardflip-cb8958c4c3d37f48692fd6a54a1ac223e0bc60d6.tar.gz
hardflip-cb8958c4c3d37f48692fd6a54a1ac223e0bc60d6.tar.bz2
hardflip-cb8958c4c3d37f48692fd6a54a1ac223e0bc60d6.tar.xz
hardflip-cb8958c4c3d37f48692fd6a54a1ac223e0bc60d6.tar.zst
hardflip-cb8958c4c3d37f48692fd6a54a1ac223e0bc60d6.zip
go
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) {