20 lines
588 B
C++
20 lines
588 B
C++
|
#include <imgui.h>
|
||
|
|
||
|
#include "../fragments/filters.h"
|
||
|
#include "../filters.h"
|
||
|
#include "../config.h"
|
||
|
#include "exclusions.h"
|
||
|
|
||
|
void exclusions_window(Config& active_config, Config& inactive_config,
|
||
|
const std::vector<LogcatEntry>& logcat_entries, std::vector<size_t>& filtered_logcat_entry_offsets,
|
||
|
bool* p_open) {
|
||
|
if (!ImGui::Begin("Exclusions", p_open)) {
|
||
|
ImGui::End();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
filters_fragment(active_config, active_config.exclusions, inactive_config.exclusions, logcat_entries, filtered_logcat_entry_offsets, p_open);
|
||
|
|
||
|
ImGui::End();
|
||
|
}
|