From a75fe213a6389e92fc6af289178c1de074544594 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 10 Sep 2012 12:16:23 +0900 Subject: [PATCH] Make entity lines post rather than pre. I'm not sure what visual difference it makes, but it is pretty much what I'd intended in the first place. --- tools/io_qfmap/entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/io_qfmap/entity.py b/tools/io_qfmap/entity.py index 1f03621dc..3e104fe21 100644 --- a/tools/io_qfmap/entity.py +++ b/tools/io_qfmap/entity.py @@ -81,7 +81,7 @@ class QFEntityRelations(bpy.types.Panel): for reg in context.area.regions: if reg.type != 'WINDOW': continue - reg.callback_add(draw_callback, (cls, context), 'PRE_VIEW') + reg.callback_add(draw_callback, (cls, context), 'POST_VIEW') cls.initDone = True return False def draw_header(self, context):