From a9b2102ec1dac309528cff9f9e9d5baec41174fc Mon Sep 17 00:00:00 2001 From: tildearrow Date: Fri, 18 Feb 2022 13:21:36 -0500 Subject: [PATCH] GUI: add party time warning --- src/gui/settings.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gui/settings.cpp b/src/gui/settings.cpp index 116b11d46..8aac8d842 100644 --- a/src/gui/settings.cpp +++ b/src/gui/settings.cpp @@ -404,6 +404,9 @@ void FurnaceGUI::drawSettings() { if (ImGui::Checkbox("About screen party time",&partyTimeB)) { settings.partyTime=partyTimeB; } + if (ImGui::IsItemHovered()) { + ImGui::SetTooltip("Warning: may cause epileptic seizures."); + } ImGui::Separator();