summaryrefslogtreecommitdiff
path: root/src/wx/new_film_dialog.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/new_film_dialog.cc')
-rw-r--r--src/wx/new_film_dialog.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/wx/new_film_dialog.cc b/src/wx/new_film_dialog.cc
index 91caa4963..8beb13004 100644
--- a/src/wx/new_film_dialog.cc
+++ b/src/wx/new_film_dialog.cc
@@ -21,10 +21,10 @@
#include <wx/stdpaths.h>
#include "lib/config.h"
#include "new_film_dialog.h"
-#if defined(__WXMSW__) || (GTK_MAJOR_VERSION == 2 && GTK_MINOR_VERSION == 24 && GTK_MICRO_VERSION == 17)
+#include "wx_util.h"
+#ifdef DVDOMATIC_USE_OWN_DIR_PICKER
#include "dir_picker_ctrl.h"
#endif
-#include "wx_util.h"
using namespace std;
using namespace boost;
@@ -47,10 +47,7 @@ NewFilmDialog::NewFilmDialog (wxWindow* parent)
add_label_to_sizer (table, this, _("Create in folder"));
- /* GTK 2.24.17 has a buggy GtkFileChooserButton and it was put in Ubuntu 13.04.
- Use our own dir picker as this is the least bad option I can think of.
- */
-#if defined(__WXMSW__) || (GTK_MAJOR_VERSION == 2 && GTK_MINOR_VERSION == 24 && GTK_MICRO_VERSION == 17)
+#ifdef DVDOMATIC_USE_OWN_DIR_PICKER
_folder = new DirPickerCtrl (this);
#else
_folder = new wxDirPickerCtrl (this, wxDD_DIR_MUST_EXIST);