| 1162 | } |
| 1163 | |
| 1164 | bool BrowserWindow::processActionButton(std::string const& text) |
| 1165 | { |
| 1166 | ImGui::PushStyleColor(ImGuiCol_Button, static_cast<ImVec4>(Const::ToolbarButtonBackgroundColor)); |
| 1167 | ImGui::PushStyleColor(ImGuiCol_ButtonHovered, (ImU32)Const::ToolbarButtonHoveredColor); |
| 1168 | auto result = ImGui::Button(text.c_str()); |
| 1169 | ImGui::PopStyleColor(2); |
| 1170 | |
| 1171 | return result; |
| 1172 | } |
| 1173 | |
| 1174 | bool BrowserWindow::processDetailButton() |
| 1175 | { |
nothing calls this directly
no outgoing calls
no test coverage detected