diff options
| author | Juan Linietsky | 2015-04-07 20:14:10 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-04-07 20:14:10 -0300 |
| commit | b1bf4fcef2cdc0ebc35802c635062fd1b7367004 (patch) | |
| tree | ee5c7f2213cebb6ce18296e01cbe424a906c0d2d | |
| parent | 8f07919a5f7f8d270182d33372c547e3c1d62b30 (diff) | |
| parent | 78d734873d27d855e01d574a6dd3a6380b2fa5ec (diff) | |
| download | godot-b1bf4fcef2cdc0ebc35802c635062fd1b7367004.tar.gz godot-b1bf4fcef2cdc0ebc35802c635062fd1b7367004.tar.zst godot-b1bf4fcef2cdc0ebc35802c635062fd1b7367004.zip | |
Merge pull request #1591 from MostafaHassan/pr_FixCrashInVisualShader
(Fix crash) in visual shader for curve remap node
| -rw-r--r-- | modules/gdscript/gd_script.cpp | 2 | ||||
| -rw-r--r-- | tools/editor/plugins/shader_graph_editor_plugin.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdscript/gd_script.cpp b/modules/gdscript/gd_script.cpp index 06c746c4f..f13b51c00 100644 --- a/modules/gdscript/gd_script.cpp +++ b/modules/gdscript/gd_script.cpp @@ -1689,7 +1689,7 @@ bool GDScript::_update_exports() { } - if (c->extends_used && String(c->extends_file)!="") { + if (c->extends_used && String(c->extends_file)!="" && String(c->extends_file) != get_path()) { String path = c->extends_file; if (path.is_rel_path()) { diff --git a/tools/editor/plugins/shader_graph_editor_plugin.cpp b/tools/editor/plugins/shader_graph_editor_plugin.cpp index 508e8b4cb..e829c06e6 100644 --- a/tools/editor/plugins/shader_graph_editor_plugin.cpp +++ b/tools/editor/plugins/shader_graph_editor_plugin.cpp @@ -376,7 +376,7 @@ void GraphCurveMapEdit::_input_event(const InputEvent& p_event) { update(); } - if (p_event.type==InputEvent::MOUSE_MOTION && grabbing) { + if (p_event.type==InputEvent::MOUSE_MOTION && grabbing && grabbed != -1) { Point2 p = Vector2(p_event.mouse_button.x,p_event.mouse_button.y)/get_size(); p.y=1.0-p.y; |
