Skip to content

Commit 8aec3f6

Browse files
authored
fix(extension): fix List.Dropdown entries not displaying if not within section (#739)
1 parent 1299d95 commit 8aec3f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vicinae/src/extension/extension-list-component.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ void ExtensionListComponent::renderDropdown(const DropdownModel &dropdown) {
3838
freeSectionItems.emplace_back(std::make_shared<DropdownSelectorItem>(*listItem));
3939
} else if (auto section = std::get_if<DropdownModel::Section>(&item)) {
4040
if (!freeSectionItems.empty()) {
41-
// m_selector->addSection("", freeSectionItems);
41+
m_selector->addSection("", freeSectionItems);
4242
freeSectionItems.clear();
4343
}
4444

0 commit comments

Comments
 (0)