We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4af69c9 + 296bee6 commit 3cfe5f9Copy full SHA for 3cfe5f9
scene/gui/line_edit.cpp
@@ -522,7 +522,7 @@ void LineEdit::gui_input(const Ref<InputEvent> &p_event) {
522
selection.drag_attempt = false;
523
if (!selection.double_click) {
524
bool is_inside_sel = selection.enabled && caret_column >= selection.begin && caret_column <= selection.end;
525
- if (drag_and_drop_selection_enabled && is_inside_sel) {
+ if (!pass && drag_and_drop_selection_enabled && is_inside_sel) {
526
selection.drag_attempt = true;
527
} else {
528
deselect();
0 commit comments