blob: ed5aa43e23c32a7d0faeb5eb7798985381b84c97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
## 70_choose_tree.dpatch by William Alexander Grant <william.grant@ubuntu.com.au>
--- tv-0.5.orig/tview.cpp
+++ tv-0.5/tview.cpp
@@ -209,7 +209,7 @@
wxT("SVG vector picture files (*.svg)|*.svg"),
wxSAVE|wxOVERWRITE_PROMPT);
- if (dialog.ShowModal() == wxID_OK)
+ if ((dialog.ShowModal() == wxID_OK) && (p.GetNumTrees() != 0))
{
wxSVGFileDC pictureDC (dialog.GetPath(), 600, 650) ;
OnDraw (&pictureDC);
|