Skip to content

Commit

Permalink
allow dashes in developer name search (#1023)
Browse files Browse the repository at this point in the history
* Update FiltersPopup.cpp

* remove space
  • Loading branch information
hiimjustin000 authored Sep 5, 2024
1 parent db2e48e commit bff3472
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions loader/src/ui/mods/popups/FiltersPopup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ bool FiltersPopup::setup(ModListSource* src) {

m_developerNameInput = TextInput::create(inputContainer->getContentWidth(), "Developer Name");
m_developerNameInput->setTextAlign(TextInputAlign::Left);
m_developerNameInput->setFilter("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-");
m_developerNameInput->setString(src->getQuery().developer.value_or(""));
inputContainer->addChildAtPosition(m_developerNameInput, Anchor::Center);

Expand Down

0 comments on commit bff3472

Please sign in to comment.