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.
1 parent 8e182b4 commit 7dd1848Copy full SHA for 7dd1848
lib/dock/dock_model.dart
@@ -35,7 +35,7 @@ class DockNode {
35
void removeChild(DockNode childNode) {
36
int index = children.indexOf(childNode);
37
if (index >= 0) {
38
- children.removeRange(index, 1);
+ children.removeRange(index, index + 1);
39
}
40
41
0 commit comments