Compare commits

..

5 Commits

Author SHA1 Message Date
ydeltastar 8343ea52d0
Merge 1742018696 into d78adabf7c 2024-09-13 14:13:05 +02:00
Serhii Snitsaruk d78adabf7c
Bump version to 1.3-dev 2024-09-13 14:13:00 +02:00
yds 1742018696 Preserve selection after drop 2024-09-13 09:04:18 -03:00
yds a460c7898b Add drag preview 2024-09-13 09:04:18 -03:00
yds 8ee3688da2 Implement task multiple selection and drag and drop 2024-09-13 09:04:18 -03:00
2 changed files with 5 additions and 5 deletions

View File

@ -427,7 +427,7 @@ void TaskTree::_drop_data_fw(const Point2 &p_point, const Variant &p_data) {
break;
case -1: // Drop above target.
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();
break;
case 1: // Drop below target.

View File

@ -1,10 +1,10 @@
# Edit the following variables to change version info
major = 1
minor = 2
patch = 1
status = ""
doc_branch = "v1.2.0"
minor = 3
patch = 0
status = "dev"
doc_branch = "master"
godot_cpp_ref = "godot-4.3-stable"
# Code that generates version header