Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2008-01-26 13:55:24 +0300
committerJoshua Leung <aligorith@gmail.com>2008-01-26 13:55:24 +0300
commit3206acdc40450a79fc66eef7e4f285367c7cff63 (patch)
treef1160028d5cbd9455c0dd2b6667d7421d679428e /source
parent40413c9a4a3f8f5128c7d0a05d1b1fe45f396b2a (diff)
Bugfix #8155:
Selecting markers in the sequencer crashed Blender
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/editseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editseq.c b/source/blender/src/editseq.c
index 5d511b35633..a3bdbd0f7ab 100644
--- a/source/blender/src/editseq.c
+++ b/source/blender/src/editseq.c
@@ -788,7 +788,7 @@ void mouse_select_seq(void)
int hand,seldir;
TimeMarker *marker;
- marker=find_nearest_marker(0, 1);
+ marker=find_nearest_marker(SCE_MARKERS, 1);
if (marker) {
int oldflag;