diff options
| author | Jeff Garzik <[email protected]> | 2011-05-06 04:33:44 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2011-05-06 04:33:44 -0700 |
| commit | 4408034bcd70032b582e26637a67166df578a8f4 (patch) | |
| tree | 0704aee00e67dc659145240c927959f30368ddeb | |
| parent | Merge pull request #196 from amiryal/master (diff) | |
| parent | When an error is returned, the client crashes as EndModal is called twice. (diff) | |
| download | discoin-4408034bcd70032b582e26637a67166df578a8f4.tar.xz discoin-4408034bcd70032b582e26637a67166df578a8f4.zip | |
Merge pull request #197 from TheBlueMatt/errorfix
Fix GUI crash
| -rw-r--r-- | ui.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1929,6 +1929,7 @@ void CSendDialog::OnButtonSend(wxCommandEvent& event) { wxMessageBox(strError + " ", _("Sending...")); EndModal(false); + return; } } } |