Triple click doesn't select line if click was done on different lines. Fix #1727

This commit is contained in:
Biliogadafr 2015-05-02 00:03:49 +03:00
parent 88d078df1e
commit 8e7973d660
1 changed files with 1 additions and 1 deletions

View File

@ -1249,7 +1249,7 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
}
if (!mb.doubleclick && (OS::get_singleton()->get_ticks_msec()-last_dblclk)<600) {
if (!mb.doubleclick && (OS::get_singleton()->get_ticks_msec()-last_dblclk)<600 && cursor.line==prev_line) {
//tripleclick select line
select(cursor.line,0,cursor.line,text[cursor.line].length());
last_dblclk=0;