|
|
@@ -1008,7 +1008,7 @@ display_aubfile_window(struct window *win) |
|
|
|
ImGui::Text("Execbufs %u", context.file->n_execs); |
|
|
|
ImGui::Text("PCI ID: 0x%x", context.file->pci_id); |
|
|
|
ImGui::Text("Application name: %s", context.file->app_name); |
|
|
|
ImGui::Text(gen_get_device_name(context.file->pci_id)); |
|
|
|
ImGui::Text("%s", gen_get_device_name(context.file->pci_id)); |
|
|
|
|
|
|
|
ImGui::SetNextWindowContentWidth(500); |
|
|
|
if (ImGui::BeginPopupModal("Help", NULL, ImGuiWindowFlags_AlwaysAutoResize)) { |
|
|
@@ -1030,7 +1030,7 @@ display_aubfile_window(struct window *win) |
|
|
|
align += ImGui::GetStyle().WindowPadding.x + 10; |
|
|
|
|
|
|
|
for (uint32_t i = 0; i < ARRAY_SIZE(texts); i += 2) { |
|
|
|
ImGui::Text(texts[i]); ImGui::SameLine(align); ImGui::Text(texts[i + 1]); |
|
|
|
ImGui::Text("%s", texts[i]); ImGui::SameLine(align); ImGui::Text("%s", texts[i + 1]); |
|
|
|
} |
|
|
|
|
|
|
|
if (ImGui::Button("Done") || ImGui::IsKeyPressed(ImGuiKey_Escape)) |