Std Redo/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "==Użycie==")
(Created page with "# Istnieje kilka sposobów na wywołanie polecenia: #* Naciśnij przycisk {{Button|16px Przywróć}}. #* Wybierz z menu opcję {{MenuCom...")
Line 25: Line 25:
==Użycie==
==Użycie==


# Istnieje kilka sposobów na wywołanie polecenia:
# There are several ways to invoke the command:
#* Press the {{Button|[[Image:Std_Redo.svg|16px]] [[Std_Redo|Std Redo]]}} button.
#* Naciśnij przycisk {{Button|[[Image:Std_Redo.svg|16px]] [[Std_Redo/pl|Przywróć]]}}.
#* Select the {{MenuCommand|Edit → [[Image:Std_Redo.svg|16px]] Redo}} option from the menu.
#* Wybierz z menu opcję {{MenuCommand|Edycja → [[Image:Std_Redo.svg|16px]] Przywróć}}.
#* Use the keyboard shortcut: {{KEY|Ctrl}}+{{KEY|Y}}.
#* Użyj skrótu klawiaturowego: {{KEY|Ctrl}} + {{KEY|Y}}.


==Options==
==Options==

Revision as of 07:18, 15 May 2022

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.

Options

  • 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()