From b531d2e0e8df63ad2eb77562556d420d8958c005 Mon Sep 17 00:00:00 2001 From: Jeremy Borgman Date: Wed, 3 Mar 2021 20:41:17 -0600 Subject: [PATCH] fixed minor bug in testing --- src/tools/sizedecrease/sizedecreasetool.cpp | 2 +- src/widgets/capture/capturetoolbutton.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tools/sizedecrease/sizedecreasetool.cpp b/src/tools/sizedecrease/sizedecreasetool.cpp index 8d639b14..b6fc8cbb 100644 --- a/src/tools/sizedecrease/sizedecreasetool.cpp +++ b/src/tools/sizedecrease/sizedecreasetool.cpp @@ -34,7 +34,7 @@ QIcon SizeDecreaseTool::icon(const QColor& background, bool inEditor) const } QString SizeDecreaseTool::name() const { - return tr("Increase Tool Size"); + return tr("Decrease Tool Size"); } ToolType SizeDecreaseTool::nameID() const diff --git a/src/widgets/capture/capturetoolbutton.cpp b/src/widgets/capture/capturetoolbutton.cpp index 57ccdfbc..c5967462 100644 --- a/src/widgets/capture/capturetoolbutton.cpp +++ b/src/widgets/capture/capturetoolbutton.cpp @@ -127,8 +127,8 @@ static std::map buttonTypeOrder { CaptureToolButton::TYPE_EXIT, 17 }, { CaptureToolButton::TYPE_PIN, 18 }, #endif - { CaptureToolButton::TYPE_SIZEINCREASE, 20 }, - { CaptureToolButton::TYPE_SIZEDECREASE, 21 }, + { CaptureToolButton::TYPE_SIZEINCREASE, 20 }, + { CaptureToolButton::TYPE_SIZEDECREASE, 21 }, }; int CaptureToolButton::getPriorityByButton(CaptureToolButton::ButtonType b)