lxn / walk

A Windows GUI toolkit for the Go Programming Language
Other
6.78k stars 886 forks source link

TextEdit control should contain scrole bars #786

Open ilyapashuk opened 2 years ago

ilyapashuk commented 2 years ago

hello

please add scrole bars to TextEdit control, like it is done in notepad.

and where is api for line wrapping?

StephanVerbeeck commented 2 years ago
        TextEdit{
            Text:       Bind("Text"),
            MinSize:    Size{100, 50},
            MaxSize:    Size{4000, 2000},
            VScroll:    true,  // <- you forgot to do this
        }