summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2023-01-03 10:23:49 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2023-01-03 10:23:49 +0200
commit5eeefb2174a1144f728cfc7d31aee9e975377b62 (patch)
treed8821f00ddb7f1399745c25023364f031f119dbf
parentc5bfe1303a59b92eb94371fee6a1078dd08b7309 (diff)
Fix file dialog crash on forward click when history is empty.
-rw-r--r--editor/editor_file_dialog.cpp2
-rw-r--r--scene/gui/file_dialog.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_file_dialog.cpp b/editor/editor_file_dialog.cpp
index 55c512f77d..a9c46d4d94 100644
--- a/editor/editor_file_dialog.cpp
+++ b/editor/editor_file_dialog.cpp
@@ -1500,7 +1500,7 @@ void EditorFileDialog::_go_back() {
}
void EditorFileDialog::_go_forward() {
- if (local_history_pos == local_history.size() - 1) {
+ if (local_history_pos >= local_history.size() - 1) {
return;
}
diff --git a/scene/gui/file_dialog.cpp b/scene/gui/file_dialog.cpp
index 11a3803b35..a846ab9485 100644
--- a/scene/gui/file_dialog.cpp
+++ b/scene/gui/file_dialog.cpp
@@ -411,7 +411,7 @@ void FileDialog::_go_back() {
}
void FileDialog::_go_forward() {
- if (local_history_pos == local_history.size() - 1) {
+ if (local_history_pos >= local_history.size() - 1) {
return;
}