Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_buttons/space_buttons.c
| Show First 20 Lines • Show All 504 Lines • ▼ Show 20 Lines | case NC_ANIMATION: | ||||
| ED_area_tag_redraw(sa); | ED_area_tag_redraw(sa); | ||||
| } | } | ||||
| break; | break; | ||||
| } | } | ||||
| break; | break; | ||||
| case NC_GPENCIL: | case NC_GPENCIL: | ||||
| switch (wmn->data) { | switch (wmn->data) { | ||||
| case ND_DATA: | case ND_DATA: | ||||
| if (ELEM(wmn->action, NA_EDITED, NA_ADDED, NA_REMOVED)) { | if (ELEM(wmn->action, NA_EDITED, NA_ADDED, NA_REMOVED, NA_SELECTED)) { | ||||
| ED_area_tag_redraw(sa); | ED_area_tag_redraw(sa); | ||||
| } | } | ||||
| break; | break; | ||||
| } | } | ||||
| break; | break; | ||||
| case NC_NODE: | case NC_NODE: | ||||
| if (wmn->action == NA_SELECTED) { | if (wmn->action == NA_SELECTED) { | ||||
| ED_area_tag_redraw(sa); | ED_area_tag_redraw(sa); | ||||
| ▲ Show 20 Lines • Show All 138 Lines • Show Last 20 Lines | |||||