mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-28 16:29:34 +08:00
Remove input.hpp
This commit is contained in:

committed by
Arthur Sonzogni

parent
7ee6edfd1f
commit
26db8228f9
@@ -41,7 +41,7 @@ namespace ftxui {
|
||||
/// ```
|
||||
Component Radiobox(const std::vector<std::wstring>* entries,
|
||||
int* selected,
|
||||
ConstRef<RadioboxOption> option) {
|
||||
Ref<RadioboxOption> option) {
|
||||
return Make<RadioboxBase>(entries, selected, std::move(option));
|
||||
}
|
||||
|
||||
@@ -52,7 +52,7 @@ RadioboxBase* RadioboxBase::From(Component component) {
|
||||
|
||||
RadioboxBase::RadioboxBase(const std::vector<std::wstring>* entries,
|
||||
int* selected,
|
||||
ConstRef<RadioboxOption> option)
|
||||
Ref<RadioboxOption> option)
|
||||
: entries_(entries), selected_(selected), option_(std::move(option)) {
|
||||
#if defined(FTXUI_MICROSOFT_TERMINAL_FALLBACK)
|
||||
// Microsoft terminal do not use fonts able to render properly the default
|
||||
|
Reference in New Issue
Block a user