diff --git a/windows/main.cpp b/windows/main.cpp index 6911bc5..d093dfe 100644 --- a/windows/main.cpp +++ b/windows/main.cpp @@ -22,6 +22,7 @@ static inline void render_table_item(const LogcatEntry& logcat_entry, size_t log ImGui::PushFont(nullptr); if (ImGui::Selectable("Copy")) ImGui::SetClipboardText(text.c_str()); + if (ImGui::Selectable("Copy Time")) ImGui::SetClipboardText(time_as_str); if (ImGui::Selectable("Copy User", false, logcat_entry.user ? 0 : ImGuiSelectableFlags_Disabled)) { ImGui::SetClipboardText(logcat_entry.user->c_str()); }