Revision: 71152
          http://sourceforge.net/p/brlcad/code/71152
Author:   sharannyn
Date:     2018-07-11 10:33:59 +0000 (Wed, 11 Jul 2018)
Log Message:
-----------
Handle visible objects in Overlap File Tool and add them to the selected list

Modified Paths:
--------------
    brlcad/trunk/src/tclscripts/checker/OverlapFileTool.tcl

Modified: brlcad/trunk/src/tclscripts/checker/OverlapFileTool.tcl
===================================================================
--- brlcad/trunk/src/tclscripts/checker/OverlapFileTool.tcl     2018-07-11 
09:10:13 UTC (rev 71151)
+++ brlcad/trunk/src/tclscripts/checker/OverlapFileTool.tcl     2018-07-11 
10:33:59 UTC (rev 71152)
@@ -157,6 +157,15 @@
     pack $itk_component(progressFrame) -side top -expand true -fill both
     pack $itk_component(statusLabel)
     pack $itk_component(progressBar) -side left -expand true -fill x -anchor 
nw -pady 8 -padx 8
+
+    set visibleObjs [who]
+    foreach vobj $visibleObjs {
+       if { [string index $vobj 0] ne "/" } {
+           $this markNode "/$vobj"
+       } else {
+           $this markNode $vobj
+       }
+    }
 }
 
 

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


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
BRL-CAD Source Commits mailing list
brlcad-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to