Open playback from frame using ctrl+left click.

This commit is contained in:
Bartosz Taudul 2019-06-16 16:49:21 +02:00
parent d683699ba9
commit d361261993
2 changed files with 2 additions and 2 deletions

View File

@ -1297,7 +1297,7 @@ You can also see that there are frame separators, projected down to the rest of
Clicking the \MMB{} middle mouse button on a frame will zoom the view to the extent of the frame.
If a frame has an associated frame image (see chapter~\ref{frameimages}), you can click the \RMB{}~right mouse button on it to open the frame image playback window (see chapter~\ref{playback}) and set the playback to the selected frame.
If a frame has an associated frame image (see chapter~\ref{frameimages}), you can hold the \keys{\ctrl} key and click the \LMB{}~left mouse button on the frame, to open the frame image playback window (see chapter~\ref{playback}) and set the playback to the selected frame.
\paragraph{Zones, locks and plots display}
\label{zoneslocksplots}

View File

@ -1681,7 +1681,7 @@ bool View::DrawZoneFrames( const FrameData& frames )
ImGui::Image( m_frameTexture, ImVec2( fi->w, fi->h ) );
}
if( ImGui::IsMouseClicked( 1 ) )
if( ImGui::GetIO().KeyCtrl && ImGui::IsMouseClicked( 0 ) )
{
m_showPlayback = true;
m_playback.pause = true;