Skip to content

Commit

Permalink
Hotfix: Guest list filter
Browse files Browse the repository at this point in the history
  • Loading branch information
FlavioFS committed Feb 25, 2023
1 parent bede4e8 commit 3275eb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ParsecSoda/Widgets/GuestListWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ void GuestListWidget::renderAnyGuestDataList(GuestDataList& guestDataList, funct

bool GuestListWidget::isGuestFilterMatch(const string name, const uint32_t userID, const string filterTextStr)
{
if (!filterTextStr.empty()) return true;
if (filterTextStr.empty()) return true;
if (Stringer::fuzzyDistance(_filterText, name) == 0) return true;
if (Stringer::fuzzyDistance(_filterText, to_string(userID)) == 0) return true;

Expand Down
2 changes: 1 addition & 1 deletion ParsecSoda/Widgets/VersionWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bool VersionWidget::render()
ImGui::SetNextWindowSize(ImVec2(100, 32));
ImGui::Begin("##Version", (bool*)0, ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoBringToFrontOnFocus);
AppStyle::pushLabel();
ImGui::Text("v. 1.2.2");
ImGui::Text("v. 1.2.3");
AppStyle::pop();
ImGui::End();

Expand Down

0 comments on commit 3275eb7

Please sign in to comment.