Compare commits
5 Commits
e3f3ce9495
...
8343ea52d0
Author | SHA1 | Date |
---|---|---|
ydeltastar | 8343ea52d0 | |
Serhii Snitsaruk | d78adabf7c | |
yds | 1742018696 | |
yds | a460c7898b | |
yds | 8ee3688da2 |
|
@ -427,7 +427,7 @@ void TaskTree::_drop_data_fw(const Point2 &p_point, const Variant &p_data) {
|
||||||
break;
|
break;
|
||||||
case -1: // Drop above target.
|
case -1: // Drop above target.
|
||||||
ERR_FAIL_COND_MSG(to_task->get_parent().is_null(), "Cannot perform drop above the root task!");
|
ERR_FAIL_COND_MSG(to_task->get_parent().is_null(), "Cannot perform drop above the root task!");
|
||||||
to_pos = MAX(0, to_task->get_index() - 1);
|
to_pos = MAX(0, to_task->get_index());
|
||||||
to_task = to_task->get_parent();
|
to_task = to_task->get_parent();
|
||||||
break;
|
break;
|
||||||
case 1: // Drop below target.
|
case 1: // Drop below target.
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
# Edit the following variables to change version info
|
# Edit the following variables to change version info
|
||||||
|
|
||||||
major = 1
|
major = 1
|
||||||
minor = 2
|
minor = 3
|
||||||
patch = 1
|
patch = 0
|
||||||
status = ""
|
status = "dev"
|
||||||
doc_branch = "v1.2.0"
|
doc_branch = "master"
|
||||||
godot_cpp_ref = "godot-4.3-stable"
|
godot_cpp_ref = "godot-4.3-stable"
|
||||||
|
|
||||||
# Code that generates version header
|
# Code that generates version header
|
||||||
|
|
Loading…
Reference in New Issue