chtooltip updates... again

fix tile overflow
add psg to hierarchy
update hierarchy (ext.ops after fm)
This commit is contained in:
Eknous-P 2024-10-13 18:31:46 +04:00 committed by tildearrow
parent 721c3b55b6
commit 17da58c0ca
4 changed files with 28 additions and 5 deletions

View file

@ -92,7 +92,8 @@ void FurnaceGUI::drawSysManager() {
if (e->song.system[i]!=DIV_SYSTEM_NULL) {
const DivSysDef* sysDef=e->getSystemDef(e->song.system[i]);
if (ImGui::BeginTooltip()) {
ImGui::PushTextWrapPos(420.0f*dpiScale); // arbitrary constant
ImGui::Dummy(ImVec2(MIN(scrW*dpiScale,400.0f*dpiScale),0.0f));
ImGui::PushTextWrapPos(MIN(scrW*dpiScale,400.0f*dpiScale)); // arbitrary constant
ImGui::TextWrapped("%s",sysDef->description);
ImGui::Separator();
drawSystemChannelInfoText(sysDef);