@@ 253,7 253,7 @@ func (a *App) run() error {
Top: e.Insets.Top,
Left: e.Insets.Left,
Right: e.Insets.Right,
- Bottom: e.Insets.Bottom,
+ Bottom: unit.Add(gtx, unit.Dp(8), e.Insets.Bottom),
}
a.Layout(gtx)
if a.profiling {
@@ 1080,8 1080,8 @@ func (p *threadPage) layoutMessageBox(gtx *layout.Context) {
in := layout.Inset{Left: unit.Dp(8)}
in.Layout(gtx, func() {
btn := theme.IconButton(iconLib.send)
- btn.Size = unit.Dp(30)
- btn.Padding = unit.Dp(6)
+ btn.Size = unit.Dp(48)
+ btn.Padding = unit.Dp(12)
btn.Layout(gtx, p.send)
sendHeight = gtx.Dimensions.Size.Y
})
@@ 1094,7 1094,7 @@ func (p *threadPage) layoutMessageBox(gtx *layout.Context) {
}
bg := Background{
Color: rgb(0xeeeeee),
- Inset: layout.Inset{Left: unit.Dp(8), Right: unit.Dp(8), Top: unit.Dp(4), Bottom: unit.Dp(4)},
+ Inset: layout.Inset{Left: unit.Dp(8), Right: unit.Dp(8)},
Radius: unit.Dp(10),
}
bg.Layout(gtx, func() {