Add require coverage checkbox.

This commit is contained in:
Bartosz Taudul
2026-06-29 16:30:21 +02:00
parent 6d6a4beda3
commit 27f4e00aea
2 changed files with 3 additions and 0 deletions

View File

@@ -979,6 +979,7 @@ private:
bool zoom = false;
bool loop = false;
bool limitRange = false;
bool requireCoverage = true;
std::pair<int, int> range = { -1, -1 };
} m_playback;

View File

@@ -284,6 +284,8 @@ void View::DrawPlayback()
limitChanged = true;
}
}
ImGui::Separator();
SmallCheckbox( "Require frame coverage", &m_playback.requireCoverage );
ImGui::EndPopup();
}