From 81dc1bd806c6625515d9d22379636c0d3ea557df Mon Sep 17 00:00:00 2001 From: Joe Crop Date: Tue, 6 Dec 2022 11:16:04 -0800 Subject: [PATCH] moved logic toolbox to the bottom of the list --- apps/math_toolbox.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/math_toolbox.cpp b/apps/math_toolbox.cpp index c944f0be1..9e25d0c28 100644 --- a/apps/math_toolbox.cpp +++ b/apps/math_toolbox.cpp @@ -882,7 +882,6 @@ const ToolboxMessageTree menu[] = { ToolboxMessageTree::Leaf(I18n::Message::RootCommandWithArg, I18n::Message::NthRoot), ToolboxMessageTree::Leaf(I18n::Message::LogCommandWithArg, I18n::Message::BasedLogarithm), ToolboxMessageTree::Node(I18n::Message::Calculation, calculChildren), - ToolboxMessageTree::Node(I18n::Message::Logic, logicChildren), ToolboxMessageTree::Node(I18n::Message::ComplexNumber, complexChildren), ToolboxMessageTree::Node(I18n::Message::Unit, unitChildren), ToolboxMessageTree::Node(I18n::Message::Arithmetic, arithmeticChildren), @@ -897,7 +896,8 @@ const ToolboxMessageTree menu[] = { ToolboxMessageTree::Node(I18n::Message::HyperbolicTrigonometry, trigonometryChildren), ToolboxMessageTree::Node(I18n::Message::Fluctuation, predictionChildren), ToolboxMessageTree::Node(I18n::Message::Chemistry, chemistry), - ToolboxMessageTree::Node(I18n::Message::Physics, Physics) + ToolboxMessageTree::Node(I18n::Message::Physics, Physics), + ToolboxMessageTree::Node(I18n::Message::Logic, logicChildren), }; const ToolboxMessageTree toolboxModel = ToolboxMessageTree::Node(I18n::Message::Toolbox, menu);