From eba472e9b42bfa41a90da130a1c10980c5bfb6fa Mon Sep 17 00:00:00 2001 From: blankie Date: Sun, 15 Jan 2023 21:17:31 +0700 Subject: [PATCH] Add uid adverb for default logcat command --- event_loop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/event_loop.cpp b/event_loop.cpp index d859ae4..5b3f155 100644 --- a/event_loop.cpp +++ b/event_loop.cpp @@ -21,7 +21,7 @@ static inline void settings_window(Config& config, float* config_write_timer, bo } // TODO actually have process control ImGui::Text("Logcat command only takes effect when logcat is not running"); - if (ImGui::InputTextWithHint("Logcat command", "adb logcat -Dv 'threadtime UTC epoch usec'", &config.logcat_command)) { + if (ImGui::InputTextWithHint("Logcat command", "adb logcat -Dv 'threadtime UTC epoch usec uid'", &config.logcat_command)) { *config_write_timer = *config_write_timer > 0.0f ? *config_write_timer : 5.0f; } ImGui::Text("Font sizes only take effect when LogMeow is restarted");