Modifica: Ripristina

From FreeCAD Documentation
Revision as of 14:09, 19 April 2020 by Renatorivo (talk | contribs)

Ripristina

Posizione nel menu
Modifica → Ripristina
Ambiente
Tutti
Avvio veloce
Ctrl+Shift+Z
Introdotto nella versione
-
Vedere anche
Annulla

Descrizione

Descrizione

Questo comando Ripristina le operazioni Annullate in precedenza.

Utilizzo

  • Cliccare su o scegliere Modifica → Ripristina nel menu principale.

In alternativa è possibile utilizzare la combinazione di tasti Ctrl + Y.

Ad ogni clic del mouse, o combinazione di tasti, viene ripristinata a ritroso l'ultima operazione annullata.

Il numero di operazioni modificabili può essere definito in Modifica → Preferenze → Generale → Documento. Di default sono modificabili 20 operazioni.

Menu_Annulla_Ripristina

Opzioni

  • To redo multiple actions click on the black down arrow to the right of the Std Redo button and select from the list.

Preferenze

  • The Undo/Redo functionality can be disabled by setting Tools → Edit parameters... → BaseApp → Preferences → Document → UsingUndo to false, but this is not recommended. This setting can also be changed in the Preferences Editor.
  • The maximum number of Undo/Redo steps is controlled by Tools → Edit parameters... → BaseApp → Preferences → Document → MaxUndoSize. This setting can also be changed in the Preferences Editor.

Script

Vedere anche: Script di base per FreeCAD

To redo an action that has just been undone use the redo method of the document object.

import FreeCAD

FreeCAD.ActiveDocument.redo()