1
0
Fork 0

Ctrl-Shift-click on the '.' entry fires listeners of the parent node.

This can be used to validate atomic branches after individual members
have been changed.

(This is useful no matter how the discussion on aggregate property types
ends, and not meant to enforce/accelerate a decision.)
This commit is contained in:
mfranz 2009-04-07 15:05:57 +00:00 committed by Tim Moore
parent c2af121c00
commit a57b626633

View file

@ -195,7 +195,9 @@ void PropertyList::handle_select(puObject *list_box)
if (prop_list->_dot_files && (selected < 2)) {
if (src[0] == '.' && (src[1] == '\0' || src[1] == ' ')) {
if (mod_ctrl)
if (mod_ctrl && mod_shift)
prop_list->_curr->fireValueChanged();
else if (mod_ctrl)
prop_list->toggleVerbosity();
else if (mod_shift)
dumpProperties(prop_list->_curr);