From 35af2f7b446524d297207191aefdfa252f19f226 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Wed, 1 May 2024 17:39:47 +0300 Subject: [PATCH] Fix typos. --- src/app/valentina/mainwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/valentina/mainwindow.cpp b/src/app/valentina/mainwindow.cpp index 5fc93a687..b521511fe 100644 --- a/src/app/valentina/mainwindow.cpp +++ b/src/app/valentina/mainwindow.cpp @@ -3070,7 +3070,7 @@ void MainWindow::ToolBarDrawTools() auto *lineIntersectionPointTool = new VToolButtonPopup(this); lineIntersectionPointTool->setMenu(lineIntersectionPointToolMenu); lineIntersectionPointTool->setDefaultAction(ui->actionPointOfIntersectionTool); - lineIntersectionPointTool->SetToolGroupTooltip(tr("Point at the intersections of lins/axis tools")); + lineIntersectionPointTool->SetToolGroupTooltip(tr("Point at the intersections of lines/axis tools")); ui->toolBarPointTools->addWidget(lineIntersectionPointTool); } @@ -3113,7 +3113,7 @@ void MainWindow::ToolBarDrawTools() auto *curveSegmentPointTool = new VToolButtonPopup(this); curveSegmentPointTool->setMenu(curveSegmentPointToolMenu); curveSegmentPointTool->setDefaultAction(ui->actionSplineCutPointTool); - curveSegmentPointTool->SetToolGroupTooltip(tr("Point segementing curves/arcs tools")); + curveSegmentPointTool->SetToolGroupTooltip(tr("Point segmenting curves/arcs tools")); ui->toolBarPointTools->addWidget(curveSegmentPointTool); } @@ -3127,7 +3127,7 @@ void MainWindow::ToolBarDrawTools() auto *curveIntersectionPointTool = new VToolButtonPopup(this); curveIntersectionPointTool->setMenu(curveIntersectionPointToolMenu); curveIntersectionPointTool->setDefaultAction(ui->actionIntersectionCurvesTool); - curveIntersectionPointTool->SetToolGroupTooltip(tr("Points interecting with 2 curves/arcs/circles tools")); + curveIntersectionPointTool->SetToolGroupTooltip(tr("Points intersecting with 2 curves/arcs/circles tools")); ui->toolBarPointTools->addWidget(curveIntersectionPointTool); }