PistonDevelopers / conrod

An easy-to-use, 2D GUI library written entirely in Rust.
Other
3.35k stars 296 forks source link

Fixed-width textboxes that scroll #220

Open abonander opened 9 years ago

abonander commented 9 years ago

This is relatively trivial to implement if the user provides the maximum column (character) count to fit in the textbox, then internally use a subslice that shifts its start/end if the user tries to push the cursor further left or right.

dcampbell24 commented 9 years ago

Related: #71