summaryrefslogtreecommitdiffstats
path: root/scene/gui
diff options
context:
space:
mode:
authorSofox <sofoxx@gmail.com>2023-12-12 17:51:53 +0000
committerSofox <sofoxx@gmail.com>2023-12-12 17:51:53 +0000
commita1a5c87f9e640cfe09edb58ed9cabd17afe5e7e9 (patch)
treeb14462150cf08804062ffedb27c0b347555fc204 /scene/gui
parent0c03d25ba499214bd04a55e5df9ea17c9b3a344a (diff)
downloadredot-engine-a1a5c87f9e640cfe09edb58ed9cabd17afe5e7e9.tar.gz
Cleanup in undo in TextEdit and LineEdit
Diffstat (limited to 'scene/gui')
-rw-r--r--scene/gui/line_edit.cpp14
-rw-r--r--scene/gui/text_edit.cpp2
2 files changed, 6 insertions, 10 deletions
diff --git a/scene/gui/line_edit.cpp b/scene/gui/line_edit.cpp
index 5ed1a9d5e3..55645e1138 100644
--- a/scene/gui/line_edit.cpp
+++ b/scene/gui/line_edit.cpp
@@ -1208,13 +1208,12 @@ void LineEdit::undo() {
return;
}
+ if (!has_undo()) {
+ return;
+ }
+
if (undo_stack_pos == nullptr) {
- if (undo_stack.size() <= 1) {
- return;
- }
undo_stack_pos = undo_stack.back();
- } else if (undo_stack_pos == undo_stack.front()) {
- return;
}
deselect();
@@ -1234,10 +1233,7 @@ void LineEdit::redo() {
return;
}
- if (undo_stack_pos == nullptr) {
- return;
- }
- if (undo_stack_pos == undo_stack.back()) {
+ if (!has_redo()) {
return;
}
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp
index 5817f70343..ba8b0b9b23 100644
--- a/scene/gui/text_edit.cpp
+++ b/scene/gui/text_edit.cpp
@@ -4024,7 +4024,7 @@ void TextEdit::redo() {
}
_push_current_op();
- if (undo_stack_pos == nullptr) {
+ if (!has_redo()) {
return; // Nothing to do.
}