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:
parent
c2af121c00
commit
a57b626633
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue