Revision: 65362
          http://sourceforge.net/p/brlcad/code/65362
Author:   bob1961
Date:     2015-06-17 19:22:43 +0000 (Wed, 17 Jun 2015)
Log Message:
-----------
Modified Archer::initCompSelect to not call doSelectGroup when coming out of a 
binding override. This stops the extra/unwanted "Selection Group" dialog from 
popping up whenever you release any of the modifier keys. This was happening 
everywhere and in particular the command window.

Modified Paths:
--------------
    brlcad/trunk/src/tclscripts/archer/Archer.tcl

Modified: brlcad/trunk/src/tclscripts/archer/Archer.tcl
===================================================================
--- brlcad/trunk/src/tclscripts/archer/Archer.tcl       2015-06-17 17:24:43 UTC 
(rev 65361)
+++ brlcad/trunk/src/tclscripts/archer/Archer.tcl       2015-06-17 19:22:43 UTC 
(rev 65362)
@@ -2200,7 +2200,9 @@
     if {$mCompSelectMode != $COMP_SELECT_LIST_MODE &&
        $mCompSelectMode != $COMP_SELECT_LIST_PARTIAL_MODE &&
        $mCompSelectMode != $COMP_SELECT_BOT_POINTS_MODE} {
-       doSelectGroup
+       if {!$mOverrideBinding} {
+           doSelectGroup
+       }
     }
 
     $itk_component(ged) clear_view_rect_callback_list

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


------------------------------------------------------------------------------
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to