Skip to content

Commit

Permalink
fix the doxygen documentation by moving comments at the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitdudu authored Oct 14, 2023
1 parent d4c9c5e commit 1169b63
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions include/ftxui/component/component_options.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,12 @@ struct InputOption {

// Style:
std::function<Element(InputState)> transform;
Ref<bool> password = false; /// < Obscure the input content using '*'.
Ref<bool> multiline = true; /// < Whether the input can be multiline.
Ref<bool> insert = true; /// < Insert or overtype character mode.
/// < Obscure the input content using '*'.
Ref<bool> password = false;
/// < Whether the input can be multiline.
Ref<bool> multiline = true;
/// < Insert or overtype character mode.
Ref<bool> insert = true;

/// Called when the content changes.
std::function<void()> on_change = [] {};
Expand Down

0 comments on commit 1169b63

Please sign in to comment.