Skip to content

Commit e71d000

Browse files
committed
renamed undo view title
1 parent ff5a046 commit e71d000

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

NodeGraphQt/base/graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ def undo_view(self):
453453
"""
454454
if self._undo_view is None:
455455
self._undo_view = QtWidgets.QUndoView(self._undo_stack)
456-
self._undo_view.setWindowTitle("Undo View")
456+
self._undo_view.setWindowTitle("Undo History")
457457
return self._undo_view
458458

459459
@property

NodeGraphQt/base/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def setup_context_menu(graph):
6767

6868
edit_menu.add_separator()
6969
edit_menu.add_command('Clear Undo History', _clear_undo)
70-
edit_menu.add_command('Show Undo View', _show_undo_view)
70+
edit_menu.add_command('Show Undo History', _show_undo_view)
7171
edit_menu.add_separator()
7272

7373
edit_menu.add_command('Copy', _copy_nodes, QtGui.QKeySequence.Copy)

0 commit comments

Comments
 (0)