1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-24 15:26:15 +00:00

-fix TextEdit shift-click functionality past begin and end of selection (#1004)

This commit is contained in:
Juan Linietsky
2015-01-02 15:08:40 -03:00
parent fbfb87ec4f
commit 8a28af024e
2 changed files with 2751 additions and 2714 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -63,6 +63,7 @@ class TextEdit : public Control {
int from_line,from_column; int from_line,from_column;
int to_line,to_column; int to_line,to_column;
bool shiftclick_left;
} selection; } selection;