From 0f9b0b9259ada50de7f8866f9591ce4ad3e7eadc Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 13 Nov 2016 14:41:26 +1100 Subject: Added word wrap feature --- c_fl_text_display.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'c_fl_text_display.cpp') diff --git a/c_fl_text_display.cpp b/c_fl_text_display.cpp index 5104869..d1785e2 100644 --- a/c_fl_text_display.cpp +++ b/c_fl_text_display.cpp @@ -83,3 +83,8 @@ void fl_text_display_previous_word(TEXTDISPLAY td) { reinterpret_cast(td)->previous_word(); } + +void fl_text_display_wrap_mode(TEXTDISPLAY td, int w, int m) { + reinterpret_cast(td)->wrap_mode(w, m); +} + -- cgit