Fix automerge in tables. (#333)

This commit is contained in:
Arthur Sonzogni
2022-02-13 11:41:31 +01:00
committed by GitHub
parent 9c4218c2a8
commit 5da7b8a59a
6 changed files with 69 additions and 18 deletions

View File

@@ -17,8 +17,8 @@ Component Dropdown(ConstStringListRef entries, int* selected) {
Impl(ConstStringListRef entries, int* selected)
: entries_(std::move(entries)), selected_(selected) {
CheckboxOption option;
option.style_checked = "";
option.style_unchecked = "";
option.style_checked = " ";
option.style_unchecked = " ";
checkbox_ = Checkbox(&title_, &show_, option),
radiobox_ = Radiobox(entries_, selected_);