summaryrefslogtreecommitdiff
path: root/gtk2_ardour/video_timeline.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-04-23 21:27:05 +0200
committerRobin Gareus <robin@gareus.org>2014-04-23 21:27:05 +0200
commit8a8dc9ca04c9ca2f9f7e30b525ca5c3251753b19 (patch)
tree897d2e276efee91c5873b02f9e2b2a0efaaac326 /gtk2_ardour/video_timeline.cc
parentcf61fb07b80fafd76275eacdddddf78522caf42e (diff)
fix xjadeo on windows (directly use xjadeo.exe)
Diffstat (limited to 'gtk2_ardour/video_timeline.cc')
-rw-r--r--gtk2_ardour/video_timeline.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/gtk2_ardour/video_timeline.cc b/gtk2_ardour/video_timeline.cc
index 0a90d80978..ea66a621e4 100644
--- a/gtk2_ardour/video_timeline.cc
+++ b/gtk2_ardour/video_timeline.cc
@@ -724,12 +724,8 @@ VideoTimeLine::find_xjadeo () {
else if (Glib::file_test(X_("/Applications/Jadeo.app/Contents/MacOS/xjremote"), Glib::FILE_TEST_EXISTS|Glib::FILE_TEST_IS_EXECUTABLE)) {
_xjadeo_bin = X_("/Applications/Jadeo.app/Contents/MacOS/xjremote");
}
- /* TODO: win32: allow to configure PATH to xjremote */
- else if (Glib::file_test(X_("C:\\Program Files\\xjadeo\\xjremote.exe"), Glib::FILE_TEST_EXISTS)) {
- _xjadeo_bin = X_("C:\\Program Files\\xjadeo\\xjremote.exe");
- }
- else if (Glib::file_test(X_("C:\\Program Files\\xjadeo\\xjremote.bat"), Glib::FILE_TEST_EXISTS)) {
- _xjadeo_bin = X_("C:\\Program Files\\xjadeo\\xjremote.bat");
+ else if (Glib::file_test(X_("C:\\Program Files\\xjadeo\\xjadeo.exe"), Glib::FILE_TEST_EXISTS)) {
+ _xjadeo_bin = X_("C:\\Program Files\\xjadeo\\xjadeo.exe");
}
else {
_xjadeo_bin = X_("");