diff --git a/examples/component/button.cpp b/examples/component/button.cpp index 0d2ab8f0f027a2128f326c4ebdfc8ea7536dc727..7629292e63885dc1d0953a38236a4df933bea5b1 100644 --- a/examples/component/button.cpp +++ b/examples/component/button.cpp @@ -43,7 +43,7 @@ int main() { }) | flex, Container::Horizontal({ Button("-10", [&] { value -= 10; }, ButtonStyle()), - Button("-10", [&] { value += 10; }, ButtonStyle()), + Button("+10", [&] { value += 10; }, ButtonStyle()), }) | flex, });