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:
Diffstat (limited to 'source/blender/editors/space_sequencer/sequencer_channels_draw.c')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_channels_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_channels_draw.c b/source/blender/editors/space_sequencer/sequencer_channels_draw.c
index 81fc87598f8..8abd7e424d1 100644
--- a/source/blender/editors/space_sequencer/sequencer_channels_draw.c
+++ b/source/blender/editors/space_sequencer/sequencer_channels_draw.c
@@ -78,7 +78,7 @@ static float icon_width_get(const SeqChannelDrawContext *context)
static float widget_y_offset(const SeqChannelDrawContext *context)
{
- return (((context->channel_height / context->scale) - icon_width_get(context))) / 2;
+ return ((context->channel_height / context->scale) - icon_width_get(context)) / 2;
}
static float channel_index_y_min(const SeqChannelDrawContext *context, const int index)