SampleLibraryEditor: Initialize "is_playing" variable

Fixes crash caused by jumping to wrong place due to uninitialized
variable.

Closes #4703
This commit is contained in:
Błażej Szczygieł 2016-06-03 19:52:07 +02:00
parent 9ed2084b42
commit 9acb666320
1 changed files with 1 additions and 1 deletions

View File

@ -357,7 +357,7 @@ SampleLibraryEditor::SampleLibraryEditor() {
file->connect("files_selected", this,"_file_load_request");
tree->connect("item_edited", this,"_item_edited");
is_playing = false;
}