forked from bartvdbraak/blender
Bugfix #3040, the new 'roundbox' button disabled copy/paste values in
buttons. You could notice that for Constraint and Modifier panels.
This commit is contained in:
parent
999392e4b7
commit
9b46c46dc9
@ -3359,7 +3359,7 @@ static int ui_do_block(uiBlock *block, uiEvent *uevent)
|
||||
case CKEY:
|
||||
if(uevent->val && (uevent->qual & (LR_CTRLKEY|LR_COMMANDKEY))) {
|
||||
for(but= block->buttons.first; but; but= but->next) {
|
||||
if(but->type!=LABEL) {
|
||||
if(but->type!=LABEL && but->type!=ROUNDBOX) {
|
||||
if(but->flag & UI_ACTIVE) {
|
||||
int doit=0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user