File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ void reveal_in_explorer(const std::filesystem::path& path) {
28
28
#else
29
29
if (std::filesystem::exists (path)) {
30
30
#if defined __linux__
31
- std::string command = " xdg-open \" " + path.string () + " \" " ;
32
- launch_process (command);
31
+ std::string command = " xdg-open \" " + path.string () + " \" " ;
32
+ launch_process (command);
33
33
#elif defined _WIN32
34
34
35
35
PIDLIST_ABSOLUTE pidl;
@@ -45,12 +45,12 @@ void reveal_in_explorer(const std::filesystem::path& path) {
45
45
}
46
46
}
47
47
}
48
+ #endif
48
49
}
49
50
else {
50
51
wxMessageBox (" The item at " + path.string () + " could not be found." , " Cannot Reveal Item" , wxOK | wxICON_ERROR);
51
52
}
52
53
#endif
53
- #endif
54
54
}
55
55
56
56
long wxListCtrl_get_selected (wxListCtrl* listCtrl) {
You can’t perform that action at this time.
0 commit comments