diff --git a/src/edit/src/editor.cpp b/src/edit/src/editor.cpp
index c1f47e4a3d4cd425463660aa746d3c5743d26ce1..3eb5925c165446fc679b84d356b549d799e2df67 100644
--- a/src/edit/src/editor.cpp
+++ b/src/edit/src/editor.cpp
@@ -2777,7 +2777,7 @@ void Editor::rotateConnector(connector_ptr connector, float angle)
     rot_con->setCurrentRotation(current_rotation + angle);
 
     auto connector_node = rot_con->getNode();
-    auto rotation_mat = glm::toMat4(glm::angleAxis(glm::radians(angle), glm::vec3(1.0f, 0.0f, 0.0f)));
+    auto rotation_mat = glm::toMat4(glm::angleAxis(glm::radians(-angle), glm::vec3(1.0f, 0.0f, 0.0f)));
     connector_node->translatePosVec(rotation_mat);
     connector_node->rotateRotationQuat(glm::toQuat(rotation_mat));
 }