diff options
| author | Jeff Carr <[email protected]> | 2019-06-13 18:53:06 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-06-13 18:53:06 -0700 |
| commit | aec1711e4a5974f651f2aeb81e8365252bed26bb (patch) | |
| tree | d8f15b4fe11ff63c86b1d04c2189a5eea9affe3f | |
| parent | 3e173ddb3e9080f3f13b7654dff37fd244e1dd7f (diff) | |
expand the text boxes
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | entry.go | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -69,16 +69,14 @@ func MakeEntryVbox(box *GuiBox, a string, startValue string, edit bool, action s } func MakeEntryHbox(box *GuiBox, a string, startValue string, edit bool, action string) *GuiEntry { - // Start 'Nickname' vertical box hboxN := ui.NewHorizontalBox() hboxN.SetPadded(true) hboxN.Append(ui.NewLabel(a), false) e := defaultMakeEntry(startValue, edit, action) - hboxN.Append(e.UiEntry, false) + hboxN.Append(e.UiEntry, true) - box.UiBox.Append(hboxN, false) - // End 'Nickname' vertical box + box.UiBox.Append(hboxN, true) return e } |
