mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
Open playback from frame using ctrl+left click.
This commit is contained in:
parent
d683699ba9
commit
d361261993
@ -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}
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user