Prevent interaction with the command list UI while a trace is still playing

This commit is contained in:
Dr. Chat 2015-11-21 22:29:47 -06:00
parent 7c25795c05
commit e565bafdab
1 changed files with 9 additions and 1 deletions

View File

@ -398,10 +398,18 @@ void TraceViewer::DrawCommandListUI() {
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip("Move to the last command");
}
if (player_->playing_trace()) {
// Don't allow the user to change the command index just yet...
// TODO: Find a way to disable the slider below.
target_command = player_->current_command_index();
}
ImGui::PushItemWidth(float(column_width - 15));
ImGui::SliderInt("", &target_command, -1, command_count - 1);
ImGui::PopItemWidth();
if (target_command != player_->current_command_index()) {
if (target_command != player_->current_command_index() &&
!player_->playing_trace()) {
did_seek = true;
player_->SeekCommand(target_command);
}