diff options
author | Benji Dial <benji6283@gmail.com> | 2021-03-07 23:19:48 -0500 |
---|---|---|
committer | Benji Dial <benji6283@gmail.com> | 2021-03-07 23:19:48 -0500 |
commit | 1a5ece4f52ef17c7c868e95eb26e98137d5cab6f (patch) | |
tree | 2ab5c639d368d3ec497b464009f0401e71d433f1 /src/user/rhello/main.cpp | |
parent | 348e1876d25320e6480f2795c9388b2bc080c743 (diff) | |
download | portland-os-1a5ece4f52ef17c7c868e95eb26e98137d5cab6f.tar.gz |
keyboard support in raleigh, word wrap and more in entry widget
Diffstat (limited to 'src/user/rhello/main.cpp')
-rw-r--r-- | src/user/rhello/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/rhello/main.cpp b/src/user/rhello/main.cpp index f179317..45329b5 100644 --- a/src/user/rhello/main.cpp +++ b/src/user/rhello/main.cpp @@ -27,7 +27,7 @@ void main() { button b(pbl, &onclick); padding pb(b, 2); - entry e(6, 20, "I'm a text entry!\nEventually you will be able to edit me."); + entry e(8, 31, "This window is made with the Raleigh widget toolkit for Portland OS.\n\nI am a text entry widget. My cursor can be used, but editing is not yet implemented."); padding pe(e, 2); dllist<widget &> wl; |