Skip to content

Commit f5b0150

Browse files
authored
Merge pull request #630 from MediaArea/m_ignorePositionChanges
Fix stack overflow when skimming in graphs
2 parents d4ef8bd + 959c31a commit f5b0150

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Source/GUI/player.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -757,6 +757,9 @@ void Player::applyFilter()
757757

758758
void Player::handleFileInformationPositionChanges()
759759
{
760+
if (m_ignorePositionChanges)
761+
return;
762+
760763
if(m_player->isPaused() && m_seekOnFileInformationPositionChange) {
761764

762765
auto ms = frameToMs(m_fileInformation->Frames_Pos_Get());

0 commit comments

Comments
 (0)