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:
-rw-r--r--source/blender/editors/interface/interface_panel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_panel.c b/source/blender/editors/interface/interface_panel.c
index cc1b7187e45..17c1455bd81 100644
--- a/source/blender/editors/interface/interface_panel.c
+++ b/source/blender/editors/interface/interface_panel.c
@@ -998,7 +998,7 @@ static int compare_panel(const void *a1, const void *a2)
static void align_sub_panels(Panel *pa)
{
/* Position sub panels. */
- int ofsy = get_panel_real_ofsy(pa) + pa->sizey - pa->blocksizey;
+ int ofsy = pa->ofsy + pa->sizey - pa->blocksizey;
for (Panel *pachild = pa->children.first; pachild; pachild = pachild->next) {
if (pachild->runtime_flag & PNL_ACTIVE) {