rogueviz::smoothcam:: after Z, move to ctrl keys

This commit is contained in:
Zeno Rogue 2021-04-07 18:03:11 +02:00
parent 7beef4e417
commit 1efe2115cb
1 changed files with 2 additions and 0 deletions

View File

@ -253,6 +253,7 @@ void show() {
labels.clear();
for(auto& anim: anims) {
if(key == 'Z'+1) key = 1;
dialog::addSelItem("segment #" + its(aid) + (&anim == current_segment ? "*" : ""), fts(anim.start_interval), key++);
dialog::add_action_push([aid] { edit_segment(aid); });
int id = 0;
@ -275,6 +276,7 @@ void show() {
}
}
if(key == 'Z'+1) key = 1;
dialog::addSelItem(f.title + " [" + dist + "]", fts(f.interval), key++);
dialog::add_action_push([&anim, id] { edit_step(anim, id); });
id++;