paste whole cell data -> paste cell content

This commit is contained in:
shun-iwasawa 2023-03-13 17:28:18 +09:00 committed by manongjohn
parent 3760592895
commit b5c0061774
4 changed files with 6 additions and 7 deletions

View file

@ -41,6 +41,6 @@
#define MI_ExplodeChild "MI_ExplodeChild"
#define MI_ToggleEditInPlace "MI_ToggleEditInPlace"
#define MI_PasteNumbers "MI_PasteNumbers"
#define MI_PasteWholeCellData "MI_PasteWholeCellData"
#define MI_PasteCellContent "MI_PasteCellContent"
#endif

View file

@ -1570,7 +1570,7 @@ void TCellSelection::enableCommands() {
&TCellSelection::reframeWithEmptyInbetweens);
enableCommand(this, MI_PasteNumbers, &TCellSelection::overwritePasteNumbers);
enableCommand(this, MI_PasteWholeCellData, &TCellSelection::pasteCells);
enableCommand(this, MI_PasteCellContent, &TCellSelection::pasteCells);
enableCommand(this, MI_CreateBlankDrawing,
&TCellSelection::createBlankDrawings);
enableCommand(this, MI_Duplicate, &TCellSelection::duplicateFrames);
@ -1617,7 +1617,7 @@ bool TCellSelection::isEnabledCommand(
MI_Undo,
MI_Redo,
MI_PasteNumbers,
MI_PasteWholeCellData,
MI_PasteCellContent,
MI_ConvertToToonzRaster,
MI_ConvertVectorToVector,
MI_CreateBlankDrawing,

View file

@ -2478,8 +2478,8 @@ void MainWindow::defineActions() {
"", "shift_keys_up");
createRightClickMenuAction(MI_PasteNumbers, QT_TR_NOOP("&Paste Numbers"), "",
"paste_numbers");
createRightClickMenuAction(MI_PasteWholeCellData,
QT_TR_NOOP("&Paste Whole Cell Data"), "", "paste");
createRightClickMenuAction(MI_PasteCellContent,
QT_TR_NOOP("&Paste Cell Content"), "", "paste");
createRightClickMenuAction(MI_Histogram, QT_TR_NOOP("&Histogram"), "");
// MI_ViewerHistogram command is used as a proxy. It will be called when
// the MI_Histogram is used while the current flip console is in viewer.

View file

@ -4158,8 +4158,7 @@ void CellArea::createCellMenu(QMenu &menu, bool isCellSelected, TXshCell cell,
if (Preferences::instance()->getPasteCellsBehavior() == 0)
pasteSpecialMenu->addAction(cmdManager->getAction(MI_PasteNumbers));
else
pasteSpecialMenu->addAction(
cmdManager->getAction(MI_PasteWholeCellData));
pasteSpecialMenu->addAction(cmdManager->getAction(MI_PasteCellContent));
if (!soundTextCellsSelected) {
pasteSpecialMenu->addAction(cmdManager->getAction(MI_PasteDuplicate));
}