Skip to content

Commit

Permalink
AutomationClipView_fixing_shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
szeli1 committed Nov 3, 2024
1 parent 9aad0cf commit 7ef78cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/clips/AutomationClipView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ AutomationClipView::AutomationClipView( AutomationClip * _clip,

if (m_shortcutMessage == "")
{
m_shortcutMessage = buildShortcutMessage();
std::vector<InteractiveModelView::ModelShortcut> s_shortcutArray = ClipView::getShortcuts();
s_shortcutArray = ClipView::getShortcuts();
s_shortcutArray.emplace_back(Qt::Key_F, Qt::ControlModifier, 0, QString(tr("Open in Automation editor")), false);
m_shortcutMessage = buildShortcutMessage();
}

setToolTip(m_clip->name());
Expand Down

0 comments on commit 7ef78cd

Please sign in to comment.