GUI: fix hash hide in channel names

This commit is contained in:
tildearrow 2024-07-14 01:56:18 -05:00
parent 0efe8a1320
commit 2ac9d0d243
2 changed files with 7 additions and 7 deletions

View file

@ -282,7 +282,7 @@ void FurnaceGUI::drawOrders() {
for (int i=0; i<e->getTotalChannelCount(); i++) {
if (!e->curSubSong->chanShow[i]) continue;
ImGui::TableNextColumn();
ImGui::Text("%s",e->getChannelShortName(i));
ImGui::TextNoHashHide("%s",e->getChannelShortName(i));
}
ImGui::PopStyleColor();
for (int i=0; i<e->curSubSong->ordersLen; i++) {