From 74377e2baa363be3be9176d5b3090ae68d5758e3 Mon Sep 17 00:00:00 2001 From: Roy-043 <70520633+Roy-043@users.noreply.github.com> Date: Thu, 11 Sep 2025 17:34:50 +0200 Subject: [PATCH] Spreadsheet: fix Split Cell name in context menu --- src/Mod/Spreadsheet/Gui/SheetTableView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Spreadsheet/Gui/SheetTableView.cpp b/src/Mod/Spreadsheet/Gui/SheetTableView.cpp index e8c8dd82af..8773bdb9e6 100644 --- a/src/Mod/Spreadsheet/Gui/SheetTableView.cpp +++ b/src/Mod/Spreadsheet/Gui/SheetTableView.cpp @@ -207,7 +207,7 @@ SheetTableView::SheetTableView(QWidget* parent) tr("Merge Cells"), &SheetTableView::mergeCells); actionSplit = createAction(":/icons/SpreadsheetSplitCell.svg", - tr("Split Cells"), + tr("Split Cell"), &SheetTableView::splitCell); contextMenu.addSeparator(); actionCut = createAction(":/icons/edit-cut.svg", tr("Cut"), &SheetTableView::cutSelection); @@ -665,7 +665,7 @@ bool SheetTableView::event(QEvent* event) actionRecompute->setText(tr("Recompute")); actionConf->setText(tr("Configuration Table…")); actionMerge->setText(tr("Merge Cells")); - actionSplit->setText(tr("Split Cells")); + actionSplit->setText(tr("Split Cell")); actionCopy->setText(tr("Copy")); actionPaste->setText(tr("Paste")); actionCut->setText(tr("Cut"));