Revision: 43938
          http://brlcad.svn.sourceforge.net/brlcad/?rev=43938&view=rev
Author:   bob1961
Date:     2011-03-23 21:13:50 +0000 (Wed, 23 Mar 2011)

Log Message:
-----------
Minor mod to Ged::handle_data_move to not load data for _pane.

Modified Paths:
--------------
    brlcad/trunk/src/tclscripts/lib/Ged.tcl

Modified: brlcad/trunk/src/tclscripts/lib/Ged.tcl
===================================================================
--- brlcad/trunk/src/tclscripts/lib/Ged.tcl     2011-03-23 19:44:23 UTC (rev 
43937)
+++ brlcad/trunk/src/tclscripts/lib/Ged.tcl     2011-03-23 21:13:50 UTC (rev 
43938)
@@ -3053,12 +3053,20 @@
        set labels [$mGed $_dtype $itk_component($_pane) labels]
 
        foreach dm {ur ul ll lr} {
+           if {$dm == $_pane} {
+               continue
+           }
+
            $mGed $_dtype $itk_component($dm) labels $labels
        }
     } else {
        set points [$mGed $_dtype $itk_component($_pane) points]
 
        foreach dm {ur ul ll lr} {
+           if {$dm == $_pane} {
+               continue
+           }
+
            $mGed $_dtype $itk_component($dm) points $points
        }
     }


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Enable your software for Intel(R) Active Management Technology to meet the
growing manageability and security demands of your customers. Businesses
are taking advantage of Intel(R) vPro (TM) technology - will your software 
be a part of the solution? Download the Intel(R) Manageability Checker 
today! http://p.sf.net/sfu/intel-dev2devmar
_______________________________________________
BRL-CAD Source Commits mailing list
brlcad-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to