Animation: Allow NLA strips to be horizontally shuffled #105532

Merged
Nate Rupsis merged 22 commits from nrupsis/blender:NLA-horizontal-shuffle into main 2023-04-03 17:10:50 +02:00
2 changed files with 0 additions and 4 deletions
Showing only changes of commit 7f3445cbcc - Show all commits

View File

@ -291,8 +291,6 @@ typedef enum ThemeColorID {
TH_NLA_META_SEL,
TH_NLA_SOUND,
TH_NLA_SOUND_SEL,
TH_NLA_ACTIVE,
TH_NLA_SELECTED,
TH_WIDGET_EMBOSS,
TH_WIDGET_TEXT_CURSOR,

View File

@ -676,11 +676,9 @@ const uchar *UI_ThemeGetColorPtr(bTheme *btheme, int spacetype, int colorid)
cp = ts->color_strip;
break;
case TH_SEQ_ACTIVE:
case TH_NLA_ACTIVE:
cp = ts->active_strip;
break;
case TH_SEQ_SELECTED:
case TH_NLA_SELECTED:
cp = ts->selected_strip;
break;