From 229bc6f79d71745177dbcfd08fa2955f41095872 Mon Sep 17 00:00:00 2001 From: bruh-9000 Date: Tue, 12 Mar 2024 20:35:24 -0700 Subject: [PATCH] Move loops to loops tab --- src/toolbox.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/toolbox.js b/src/toolbox.js index 7aaeff9..4f78e8d 100644 --- a/src/toolbox.js +++ b/src/toolbox.js @@ -136,14 +136,6 @@ export const toolbox = { 'kind': 'block', 'type': 'ifelse', }, - { - 'kind': 'block', - 'type': 'repeat', - }, - { - 'kind': 'block', - 'type': 'while', - }, { 'kind': 'block', 'type': 'colour_picker', @@ -258,6 +250,14 @@ export const toolbox = { 'name': 'Loops', 'categorystyle': 'procedure_category', 'contents': [ + { + 'kind': 'block', + 'type': 'repeat', + }, + { + 'kind': 'block', + 'type': 'while', + }, { 'kind': 'block', 'type': 'break',