diff options
| author | Błażej Szczygieł | 2016-06-03 19:52:07 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-06-03 20:07:46 +0200 |
| commit | bff77d731fbfc51f4b7cbb3a1a72d9fd3995d631 (patch) | |
| tree | 83674950796821bccfc6a1fe06ad148bd3909fcc /tools/editor/plugins/sample_library_editor_plugin.cpp | |
| parent | 21e05167b1f3afa46de33be76b17b600cd9c640c (diff) | |
| download | godot-bff77d731fbfc51f4b7cbb3a1a72d9fd3995d631.tar.gz godot-bff77d731fbfc51f4b7cbb3a1a72d9fd3995d631.tar.zst godot-bff77d731fbfc51f4b7cbb3a1a72d9fd3995d631.zip | |
SampleLibraryEditor: Initialize "is_playing" variable
Fixes crash caused by jumping to wrong place due to uninitialized
variable.
Closes #4703
(cherry picked from commit 9acb666320a03d6f47b6bd43842488bdb921be9f)
Diffstat (limited to 'tools/editor/plugins/sample_library_editor_plugin.cpp')
| -rw-r--r-- | tools/editor/plugins/sample_library_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/plugins/sample_library_editor_plugin.cpp b/tools/editor/plugins/sample_library_editor_plugin.cpp index c333d1d85..2a6940332 100644 --- a/tools/editor/plugins/sample_library_editor_plugin.cpp +++ b/tools/editor/plugins/sample_library_editor_plugin.cpp @@ -481,7 +481,7 @@ SampleLibraryEditor::SampleLibraryEditor() { file->connect("files_selected", this,"_file_load_request"); tree->connect("item_edited", this,"_item_edited"); - + is_playing = false; } |
