diff --git a/examples/component/button.cpp b/examples/component/button.cpp index 5d4f11e..5bc7852 100644 --- a/examples/component/button.cpp +++ b/examples/component/button.cpp @@ -14,8 +14,8 @@ int main(int argc, const char* argv[]) { // The tree of components. This defines how to navigate using the keyboard. auto buttons = Container::Horizontal({ - Button("[Decrease]", [&] { value--; }, false), - Button("[Increase]", [&] { value++; }, false), + Button("Decrease", [&] { value--; }), + Button("Increase", [&] { value++; }), }); // Modify the way to render them on screen: