Fix Fl_Text_Editor overstrike mode (STR #3463).

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@12848 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser
2018-04-18 13:13:07 +00:00
parent fe7ff8888e
commit b88929f98c
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -3,6 +3,7 @@ CHANGES IN FLTK 1.3.5 RELEASED: ??? ?? 2017
Bug fixes and other improvements
- Fix Fl_Text_Editor overstrike mode (STR #3463).
- More consistent and optimized "gleam" scheme box drawing.
- Fix a MinGW build error with new MinGW versions as of Feb 2018
(undefined S_OK and __FD_ISSET), see STR #3454.
+3 -3
View File
@@ -1025,7 +1025,7 @@ void Fl_Text_Display::overstrike(const char* text) {
/* find which characters to remove, and if necessary generate additional
padding to make up for removed control characters at the end */
indent = startIndent;
for ( p = startPos; ; p=buffer()->next_char(p) ) {
for ( p = startPos; ; p = buf->next_char(p) ) {
if ( p == buf->length() )
break;
ch = buf->char_at( p );
@@ -1033,11 +1033,11 @@ void Fl_Text_Display::overstrike(const char* text) {
break;
indent++;
if ( indent == endIndent ) {
p++;
p = buf->next_char(p);
break;
} else if ( indent > endIndent ) {
if ( ch != '\t' ) {
p++;
p = buf->next_char(p);
paddedText = new char [ textLen + FL_TEXT_MAX_EXP_CHAR_LEN + 1 ];
strcpy( paddedText, text );
for ( i = 0; i < indent - endIndent; i++ )