Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/slic3r/GUI/RemovableDriveManager.cpp')
-rw-r--r--src/slic3r/GUI/RemovableDriveManager.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/slic3r/GUI/RemovableDriveManager.cpp b/src/slic3r/GUI/RemovableDriveManager.cpp
index 43d08c1d0..5fb8b0132 100644
--- a/src/slic3r/GUI/RemovableDriveManager.cpp
+++ b/src/slic3r/GUI/RemovableDriveManager.cpp
@@ -235,11 +235,7 @@ std::vector<DriveData> RemovableDriveManager::search_for_removable_drives() cons
#else
-<<<<<<< HEAD
- if (platform_flavor() == PlatformFlavor::LinuxOnChromium) {
-=======
if (platform_flavor() == PlatformFlavor::LinuxOnChromium) {
->>>>>>> master
// ChromeOS specific: search /mnt/chromeos/removable/* folder
search_for_drives_internal::search_path("/mnt/chromeos/removable/*", "/mnt/chromeos/removable", current_drives);
} else {
@@ -247,11 +243,7 @@ std::vector<DriveData> RemovableDriveManager::search_for_removable_drives() cons
search_for_drives_internal::search_path("/media/*", "/media", current_drives);
//search_path("/Volumes/*", "/Volumes");
-<<<<<<< HEAD
- std::string path(std::getenv("USER"));
-=======
std::string path = wxGetUserId().ToUTF8().data();
->>>>>>> master
std::string pp(path);
//search /media/USERNAME/* folder
@@ -460,11 +452,7 @@ RemovableDriveManager::RemovableDrivesStatus RemovableDriveManager::status()
RemovableDriveManager::RemovableDrivesStatus out;
{
-<<<<<<< HEAD
- tbb::mutex::scoped_lock lock(m_drives_mutex);
-=======
std::scoped_lock<std::mutex> lock(m_drives_mutex);
->>>>>>> master
out.has_eject =
// Cannot control eject on Chromium.
platform_flavor() != PlatformFlavor::LinuxOnChromium &&