Std: Ponów

From FreeCAD Documentation
Revision as of 07:18, 15 May 2022 by Kaktus (talk | contribs) (Created page with "==Opcje==")

Std: Przywróć

Lokalizacja w menu
Edycja → Przywróć
Środowisko pracy
wszystkie
Domyślny skrót
Ctrl + Y
Wprowadzono w wersji
-
Zobacz także
Cofnij

Opis

Polecenie Przywróć odwraca działanie polecenia Cofnij.

Użycie

  1. Istnieje kilka sposobów na wywołanie polecenia:
    • Naciśnij przycisk Przywróć.
    • Wybierz z menu opcję Edycja → Przywróć.
    • Użyj skrótu klawiaturowego: Ctrl + Y.

Opcje

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

Preferences

  • 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.

Scripting

See also: FreeCAD Scripting Basics.

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

import FreeCAD

FreeCAD.ActiveDocument.redo()