aboutsummaryrefslogtreecommitdiff
path: root/app.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-23 05:13:15 -0400
committerhistoria <[not public]>2026-06-23 05:13:15 -0400
commit3511257cf199c42eddc8784b5babdb6a4120fd54 (patch)
tree8e43d29a3a8fbd09813b277c74e36955c827c872 /app.go
parent3d95de80228b09c9376ebb23037292805fce6dc3 (diff)
downloadtui-ascii-mapper-3511257cf199c42eddc8784b5babdb6a4120fd54.tar.gz
feat: wall/road characters added
Diffstat (limited to 'app.go')
-rw-r--r--app.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/app.go b/app.go
index 174f8a2..10c5db7 100644
--- a/app.go
+++ b/app.go
@@ -2036,7 +2036,7 @@ func (m *AppModel) renderSidebar(gh int) string {
}
var sb strings.Builder
- sb.WriteString(sidebarStyle.Width(sidebarW).Render("══ Symbols ══"))
+ sb.WriteString(sidebarStyle.Width(sidebarW).Render(" ══ Symbols ══"))
sb.WriteByte('\n')
for i := startIdx; i < endIdx; i++ {
t := palette[i]
@@ -2073,7 +2073,7 @@ func (m *AppModel) renderSidebar(gh int) string {
sb.WriteByte('\n')
sb.WriteString(lipgloss.NewStyle().Width(sidebarW).Render(" [Rename] [Color]"))
sb.WriteByte('\n')
- sb.WriteString(sidebarStyle.Width(sidebarW).Render("══ Tools ══"))
+ sb.WriteString(sidebarStyle.Width(sidebarW).Render(" ══ Tools ══"))
sb.WriteByte('\n')
tools := []Tool{ToolBrush, ToolSelect, ToolErase, ToolFill, ToolLine, ToolRect, ToolCircle, ToolText}
tlabels := []string{"1 Brush", "2 Select", "3 Erase", "4 Fill", "5 Line", "6 Rect", "7 Circle", "8 Text"}
@@ -2088,7 +2088,7 @@ func (m *AppModel) renderSidebar(gh int) string {
sb.WriteString(label)
sb.WriteByte('\n')
}
- sb.WriteString(sidebarStyle.Width(sidebarW).Render("══ Brush W ══"))
+ sb.WriteString(sidebarStyle.Width(sidebarW).Render("══ Brush Width ══"))
sb.WriteByte('\n')
for _, bw := range []int{1, 3, 5} {
label := fmt.Sprintf(" %dx%d", bw, bw)