Fixed highliting with shift and mouse
(cherry picked from commit 4cc3fbeaff
)
This commit is contained in:
parent
8a78112e5b
commit
68b7f9d87a
|
@ -644,10 +644,7 @@ void TextEdit::_notification(int p_what) {
|
||||||
Point2 cursor_pos;
|
Point2 cursor_pos;
|
||||||
|
|
||||||
// get the highlighted words
|
// get the highlighted words
|
||||||
String highlighted_text;
|
String highlighted_text = get_selection_text();
|
||||||
if (is_selection_active()) {
|
|
||||||
highlighted_text = get_selection_text();
|
|
||||||
}
|
|
||||||
|
|
||||||
for (int i=0;i<visible_rows;i++) {
|
for (int i=0;i<visible_rows;i++) {
|
||||||
|
|
||||||
|
@ -667,7 +664,7 @@ void TextEdit::_notification(int p_what) {
|
||||||
|
|
||||||
// check if line contains highlighted word
|
// check if line contains highlighted word
|
||||||
int highlighted_text_col = -1;
|
int highlighted_text_col = -1;
|
||||||
if (is_selection_active()) {
|
if (highlighted_text.length() != 0) {
|
||||||
highlighted_text_col = _get_column_pos_of_word(highlighted_text, str, 0);
|
highlighted_text_col = _get_column_pos_of_word(highlighted_text, str, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue