From 0b7c3d5416625c3e18f164d1e67a70d773af3d1d Mon Sep 17 00:00:00 2001 From: Kiara Navarro Date: Sat, 9 Jul 2022 18:55:12 -0500 Subject: [PATCH] mode: do not re activate current tab when is moved --- Software/PC_Application/modehandler.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Software/PC_Application/modehandler.cpp b/Software/PC_Application/modehandler.cpp index 2fed964..d456e5c 100644 --- a/Software/PC_Application/modehandler.cpp +++ b/Software/PC_Application/modehandler.cpp @@ -63,7 +63,6 @@ void ModeHandler::currentModeMoved(int from, int to) auto modeTo = modes.at(to); modes[from] = modeTo; modes[to] = modeFrom; - setCurrentIndex(to); } int ModeHandler::getCurrentIndex()