From 477b331c0e439c6a6ee1948e010b09ba2d9fd975 Mon Sep 17 00:00:00 2001 From: YohananDiamond Date: Sun, 4 Feb 2024 21:10:41 -0300 Subject: [PATCH] command palette: minor style changes --- src/gui/commandPalette.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/commandPalette.cpp b/src/gui/commandPalette.cpp index dfed5944a..a54671897 100644 --- a/src/gui/commandPalette.cpp +++ b/src/gui/commandPalette.cpp @@ -23,10 +23,10 @@ #include "misc/cpp/imgui_stdlib.h" #include #include -#include +#include #include "../ta-log.h" -static inline bool matchFuzzy(const char* haystack,const char* needle) { +static inline bool matchFuzzy(const char* haystack, const char* needle) { size_t h_i=0; // haystack idx size_t n_i=0; // needle idx while (needle[n_i]!='\0') {