2
0
Ray 11 сар өмнө
parent
commit
1e03efca48
1 өөрчлөгдсөн 0 нэмэгдсэн , 2 устгасан
  1. 0 2
      src/raygui.h

+ 0 - 2
src/raygui.h

@@ -2657,8 +2657,6 @@ int GuiTextBox(Rectangle bounds, char *text, int textSize, bool editMode)
                         // Move backward text from cursor position
                         for (int i = (textBoxCursorIndex - prevCodepointSize); i < textLength; i++) text[i] = text[i + prevCodepointSize];
 
-                        // TODO Check: i >= (cursor + codepointsize) && (i <= length-codepointsize) ???
-
                         textBoxCursorIndex -= codepointSize;
                         textLength -= codepointSize;
                     }