Skip to content

Commit

Permalink
tooltip for reactions fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
chrxh committed Dec 29, 2023
1 parent 825c6df commit 6e754d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/Base/Resources.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Const
{
std::string const ProgramVersion = "4.6.0";
std::string const ProgramVersion = "4.6.1";
std::string const DiscordLink = "https://discord.gg/7bjyZdXXQ2";

std::string const BasePath = "resources/";
Expand Down
2 changes: 1 addition & 1 deletion source/Gui/AlienImGui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ void AlienImGui::Tooltip(std::string const& text, bool delay)
void AlienImGui::Tooltip(std::function<std::string()> const& textFunc, bool delay)
{
if (ImGui::IsItemHovered() && (!delay || (delay && GImGui->HoveredIdTimer > HoveredTimer))) {
Tooltip(textFunc());
Tooltip(textFunc(), delay);
}
}

Expand Down
2 changes: 1 addition & 1 deletion source/Gui/GettingStartedWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void _GettingStartedWindow::processIntern()
*/
drawHeading1("Introduction");

ImGui::Text("ALIEN is an artificial life and physics simulation tool based on a 2D CUDA-powered particle engine for soft bodies and fluids.");
ImGui::Text("ALIEN is an artificial life and physics simulation tool based on a CUDA-powered 2D particle engine for soft bodies and fluids.");
ImGui::Text(
"Each particle can be equipped with higher-level functions including sensors, muscles, neurons, constructors, etc. that allow to "
"mimic certain functionalities of biological cells or of robotic components. Multi-cellular organisms are simulated as networks of "
Expand Down

0 comments on commit 6e754d6

Please sign in to comment.