mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +00:00
GUI: remove chan osc debug info
This commit is contained in:
parent
9edc4818b5
commit
98f31877de
2 changed files with 3 additions and 3 deletions
|
@ -190,8 +190,8 @@ void FurnaceGUI::drawChanOsc() {
|
||||||
needlePos-=alignment;
|
needlePos-=alignment;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
String cPhase=fmt::sprintf("%d cphase: %f",point,phase);
|
//String cPhase=fmt::sprintf("%d cphase: %f",point,phase);
|
||||||
dl->AddText(inRect.Min,0xffffffff,cPhase.c_str());
|
//dl->AddText(inRect.Min,0xffffffff,cPhase.c_str());
|
||||||
|
|
||||||
needlePos-=displaySize;
|
needlePos-=displaySize;
|
||||||
for (unsigned short i=0; i<512; i++) {
|
for (unsigned short i=0; i<512; i++) {
|
||||||
|
|
|
@ -12,7 +12,7 @@ void FurnaceGUI::drawFindReplace() {
|
||||||
if (!findOpen) return;
|
if (!findOpen) return;
|
||||||
ImGui::SetNextWindowSizeConstraints(ImVec2(64.0f*dpiScale,32.0f*dpiScale),ImVec2(scrW*dpiScale,scrH*dpiScale));
|
ImGui::SetNextWindowSizeConstraints(ImVec2(64.0f*dpiScale,32.0f*dpiScale),ImVec2(scrW*dpiScale,scrH*dpiScale));
|
||||||
if (ImGui::Begin("Find/Replace",&findOpen,globalWinFlags)) {
|
if (ImGui::Begin("Find/Replace",&findOpen,globalWinFlags)) {
|
||||||
ImGui::Text("What am I gonna do with you?");
|
|
||||||
}
|
}
|
||||||
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_FIND;
|
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_FIND;
|
||||||
ImGui::End();
|
ImGui::End();
|
||||||
|
|
Loading…
Reference in a new issue