Skip to content

Commit

Permalink
Fixed error message icon
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-calautti committed Dec 29, 2023
1 parent 6a4a536 commit 41895ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/gui/DeltaPatcherEncodePanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ void DeltaPatcherEncodePanel::OnThreadUpdate(wxThreadEvent& evt)

if(code!=0){
logger->Log(Logger::LOG_ERROR,message);
wxGenericMessageDialog(this,_("An error has occurred!\nSee log for more information."),_("Warning"),wxICON_EXCLAMATION).ShowModal();
wxGenericMessageDialog(this,_("An error has occurred!\nSee log for more information."),_("Warning"),wxICON_ERROR).ShowModal();
}else{
logger->Log(Logger::LOG_MESSAGE,_("Patch successfully created!"));
wxGenericMessageDialog(this,_("Patch successfully created!"),_("Notice"),wxICON_INFORMATION).ShowModal();
Expand Down

0 comments on commit 41895ac

Please sign in to comment.