aboutsummaryrefslogtreecommitdiff
path: root/hotline/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'hotline/client.go')
-rw-r--r--hotline/client.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/hotline/client.go b/hotline/client.go
index 5016a50..fb3f4e7 100644
--- a/hotline/client.go
+++ b/hotline/client.go
@@ -288,7 +288,7 @@ func handleGetFileNameList(c *Client, t *Transaction) (res []Transaction, err er
} else {
size := binary.BigEndian.Uint32(fn.FileSize) / 1024
- node := tview.NewTreeNode(fmt.Sprintf(" %-30s %15v KB", fn.Name, size))
+ node := tview.NewTreeNode(fmt.Sprintf(" %-40s %10v KB", fn.Name, size))
node.SetReference(&fn)
root.AddChild(node)
}