GUI: don't display a tooltip on the oscilloscope

This commit is contained in:
tildearrow 2022-01-28 03:08:55 -05:00
parent e443e71a20
commit 9b62eb9d34
1 changed files with 2 additions and 0 deletions

View File

@ -2001,7 +2001,9 @@ void FurnaceGUI::drawOsc() {
values[i]=(e->oscBuf[0][pos]+e->oscBuf[1][pos])*0.5f; values[i]=(e->oscBuf[0][pos]+e->oscBuf[1][pos])*0.5f;
} }
//ImGui::SetCursorPos(ImVec2(0,0)); //ImGui::SetCursorPos(ImVec2(0,0));
ImGui::BeginDisabled();
ImGui::PlotLines("##SingleOsc",values,512,0,NULL,-1.0f,1.0f,ImGui::GetContentRegionAvail()); ImGui::PlotLines("##SingleOsc",values,512,0,NULL,-1.0f,1.0f,ImGui::GetContentRegionAvail());
ImGui::EndDisabled();
} }
ImGui::PopStyleVar(4); ImGui::PopStyleVar(4);
ImGui::End(); ImGui::End();