mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-24 05:25:12 +00:00
GUI: fix orders up
This commit is contained in:
parent
749b0f39d0
commit
9643498946
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ void FurnaceGUI::drawOrders() {
|
|||
if (e->song.chanShow[i]) displayChans++;
|
||||
}
|
||||
ImGui::PushFont(patFont);
|
||||
bool tooSmall=(displayChans>((ImGui::GetWindowSize().x-24.0f*dpiScale)/ImGui::CalcTextSize("AAA").x));
|
||||
bool tooSmall=((displayChans+1)>((ImGui::GetContentRegionAvail().x)/(ImGui::CalcTextSize("AA").x+2.0*ImGui::GetStyle().ItemInnerSpacing.x)));
|
||||
ImGui::PopFont();
|
||||
if (ImGui::BeginTable("OrdersTable",1+displayChans,(tooSmall?ImGuiTableFlags_SizingFixedFit:ImGuiTableFlags_SizingStretchSame)|ImGuiTableFlags_ScrollX|ImGuiTableFlags_ScrollY)) {
|
||||
ImGui::PushFont(patFont);
|
||||
|
|
Loading…
Reference in a new issue