Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AKMaily committed Oct 4, 2024
1 parent 01f8697 commit 7f88f67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/analyze_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,15 +237,15 @@ void AnalyzeStateManager::whileSendingProcess(){
void AnalyzeStateManager::generateAnalyzeAnswerPopUp(){
if(ImGui::BeginPopupModal(appLanguage[Key::Data_upload])){
ImGui::Text(appLanguage[Key::Analyse_Answer_Text]);
ImGui::(apiResponse == "empty" ? appLanguage[Key::Upload_failure]
ImGui::Text(apiResponse == "empty" ? appLanguage[Key::Upload_failure]
: appLanguage[Key::Upload_success]);
this->writeAnalysisAnswerIntoFile();
if(ImGui::Button(appLanguage[Key::SeeAnalyzeResults])){
std::cout << "See results" << std::endl;
ImGui::CloseCurrentPopup();
}
ImGui::SameLine();
if (ImGui::Button("Schließen") {
if(ImGui::Button("close")) {
ImGui::CloseCurrentPopup();
}
}
Expand Down

0 comments on commit 7f88f67

Please sign in to comment.