From a8226cbcb24b225670e0f30d79eb180c8b858b1e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 11 Apr 2012 11:22:19 +0000 Subject: code cleanup: mselect conversion when creating a bmesh from a bmesh was overly verbose. --- release/scripts/startup/bl_ui/space_userpref.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py index ab57a0ea400..7010c4f07cf 100644 --- a/release/scripts/startup/bl_ui/space_userpref.py +++ b/release/scripts/startup/bl_ui/space_userpref.py @@ -1122,6 +1122,10 @@ class USERPREF_PT_addons(Panel): split = colsub.row().split(percentage=0.15) split.label(text="Location:") split.label(text=info["location"]) + if mod: + split = colsub.row().split(percentage=0.15) + split.label(text="File:") + split.label(text=mod.__file__) if info["author"]: split = colsub.row().split(percentage=0.15) split.label(text="Author:") -- cgit v1.2.3