Skip to content

Commit

Permalink
Remove forgotten cout statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Schweini07 committed Mar 31, 2024
1 parent 3e00a47 commit 839da19
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/Widgets/EditBoxSlider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

#include <TGUI/Widgets/EditBoxSlider.hpp>
#include <iostream>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

namespace tgui
Expand Down Expand Up @@ -215,7 +214,6 @@ namespace tgui
{
if (m_slider->getValue() != value && inRange(value))
{
std::cout << value << "\n";
m_slider->setValue(value);
setString(String::fromNumberRounded(value, m_decimalPlaces));
return true;
Expand Down

0 comments on commit 839da19

Please sign in to comment.