mirror of
https://gitea.tendokyu.moe/beerpsi/segatools-configurator.git
synced 2024-11-23 23:00:57 +01:00
18 lines
442 B
C++
18 lines
442 B
C++
//
|
|
// Created by beerpsi on 4/13/2024.
|
|
//
|
|
|
|
#include "imgui.h"
|
|
|
|
namespace ImGui {
|
|
void HelpMarker(const char *desc) {
|
|
ImGui::TextDisabled("(?)");
|
|
if (ImGui::IsItemHovered()) {
|
|
ImGui::BeginTooltip();
|
|
ImGui::PushTextWrapPos(ImGui::GetFontSize() * 35.0f);
|
|
ImGui::TextUnformatted(desc);
|
|
ImGui::PopTextWrapPos();
|
|
ImGui::EndTooltip();
|
|
}
|
|
}
|
|
} |