[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [61136] trunk/blender/release/scripts/ startup/bl_ui/space_info.py: Code cleanup:

Thomas Dinges blender at dingto.org
Tue Nov 5 16:37:12 CET 2013


Revision: 61136
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=61136
Author:   dingto
Date:     2013-11-05 15:37:11 +0000 (Tue, 05 Nov 2013)
Log Message:
-----------
Code cleanup:
* Remove unused UI code for Info Space items. Was lying around here for some months already. 

Probably we have to re-think the whole placement of the operator history thing, but thats for later. In the current config there is no room for these buttons though. 

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/space_info.py

Modified: trunk/blender/release/scripts/startup/bl_ui/space_info.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/space_info.py	2013-11-05 14:46:35 UTC (rev 61135)
+++ trunk/blender/release/scripts/startup/bl_ui/space_info.py	2013-11-05 15:37:11 UTC (rev 61136)
@@ -78,36 +78,7 @@
         row.operator("wm.splash", text="", icon='BLENDER', emboss=False)
         row.label(text=scene.statistics(), translate=False)
 
-        # XXX: BEFORE RELEASE, MOVE FILE MENU OUT OF INFO!!!
-        """
-        sinfo = context.space_data
-        row = layout.row(align=True)
-        row.prop(sinfo, "show_report_debug", text="Debug")
-        row.prop(sinfo, "show_report_info", text="Info")
-        row.prop(sinfo, "show_report_operator", text="Operators")
-        row.prop(sinfo, "show_report_warning", text="Warnings")
-        row.prop(sinfo, "show_report_error", text="Errors")
 
-        row = layout.row()
-        row.enabled = sinfo.show_report_operator
-        row.operator("info.report_replay")
-
-        row.menu("INFO_MT_report")
-        """
-
-
-class INFO_MT_report(Menu):
-    bl_label = "Report"
-
-    def draw(self, context):
-        layout = self.layout
-
-        layout.operator("console.select_all_toggle")
-        layout.operator("console.select_border")
-        layout.operator("console.report_delete")
-        layout.operator("console.report_copy")
-
-
 class INFO_MT_file(Menu):
     bl_label = "File"
 




More information about the Bf-blender-cvs mailing list