GUI: get rid of debug message

This commit is contained in:
tildearrow 2023-07-02 00:09:49 -05:00
parent 5fde2e7e30
commit f67faf9f23
1 changed files with 0 additions and 2 deletions

View File

@ -500,8 +500,6 @@ bool FurnaceGUI::InvCheckbox(const char* label, bool* value) {
void FurnaceGUI::sameLineMaybe(float width) {
if (width<0.0f) width=ImGui::GetFrameHeight();
logV("sameLineMaybe: %f %f",ImGui::GetContentRegionAvail().x,width);
ImGui::SameLine();
if (ImGui::GetContentRegionAvail().x<width) ImGui::NewLine();
}