Show info about logcat command
This commit is contained in:
parent
6632e58e61
commit
2ae03e1ff1
|
@ -5,12 +5,12 @@
|
|||
|
||||
static inline void settings_window(Config& inactive_config, bool* show_settings_window) {
|
||||
// by default, the settings window is a bit cramped
|
||||
ImGui::SetNextWindowSize(ImVec2(575, 75), ImGuiCond_FirstUseEver);
|
||||
ImGui::SetNextWindowSize(ImVec2(665, 80), ImGuiCond_FirstUseEver);
|
||||
if (!ImGui::Begin("Settings", show_settings_window)) {
|
||||
ImGui::End();
|
||||
return;
|
||||
}
|
||||
ImGui::Text("Persistence coming soon(tm)");
|
||||
ImGui::TextWrapped("Modifying logcat command will take effect after closing this window and will restart logcat");
|
||||
ImGui::InputTextWithHint("Logcat command", "adb logcat -Dv 'threadtime UTC epoch usec'", &inactive_config.logcat_command);
|
||||
ImGui::End();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue