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
diff options
context:
space:
mode:
authorRichard Antalik <richardantalik@gmail.com>2020-04-06 00:39:20 +0300
committerRichard Antalik <richardantalik@gmail.com>2020-04-06 00:39:20 +0300
commit43cc2f31959277c6c9ecb5b6b6d83c0af6d7923e (patch)
tree4fa054b7681bb3e3c9f802ae64f5dfea29dd5dbe /source/blender/editors/space_sequencer/space_sequencer.c
parent9d4300b0c60047b56f84f28650eb39cd35cf386b (diff)
Cleanup: Use `_fn` as a suffix for callbacks in VSE code
Diffstat (limited to 'source/blender/editors/space_sequencer/space_sequencer.c')
-rw-r--r--source/blender/editors/space_sequencer/space_sequencer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/space_sequencer.c b/source/blender/editors/space_sequencer/space_sequencer.c
index 73aa8e1be35..ed8117fda31 100644
--- a/source/blender/editors/space_sequencer/space_sequencer.c
+++ b/source/blender/editors/space_sequencer/space_sequencer.c
@@ -935,6 +935,6 @@ void ED_spacetype_sequencer(void)
/* set the sequencer callback when not in background mode */
if (G.background == 0) {
- sequencer_view3d_cb = ED_view3d_draw_offscreen_imbuf_simple;
+ sequencer_view3d_fn = ED_view3d_draw_offscreen_imbuf_simple;
}
}