GUI: shorten title of song info window

This commit is contained in:
tildearrow 2023-02-04 19:09:09 -05:00
parent beed67aaa1
commit ace2142286
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ void FurnaceGUI::drawSongInfo(bool asChild) {
nextWindow=GUI_WINDOW_NOTHING;
}
if (!songInfoOpen && !asChild) return;
bool began=asChild?ImGui::BeginChild("Song Information"):ImGui::Begin("Song Information",&songInfoOpen,globalWinFlags);
bool began=asChild?ImGui::BeginChild("Song Info##Song Information"):ImGui::Begin("Song Info##Song Information",&songInfoOpen,globalWinFlags);
if (began) {
if (ImGui::BeginTable("NameAuthor",2,ImGuiTableFlags_SizingStretchProp)) {
ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed,0.0);