mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-31 20:51:12 -06:00 
			
		
		
		
	Fix of previopus commut
This commit is contained in:
		
							parent
							
								
									18cf1fdb43
								
							
						
					
					
						commit
						961abd75e8
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -333,7 +333,7 @@ void RemovableDriveManager::eject_drive() | |||
| 			// Remove the drive_data from m_current drives, searching by value, not by pointer, as m_current_drives may get modified during
 | ||||
| 			// asynchronous execution on m_eject_thread.
 | ||||
| 			tbb::mutex::scoped_lock lock(m_drives_mutex); | ||||
| 			auto it = m_current_drives.find(drive_data); | ||||
| 			auto it = std::find(m_current_drives.begin(), m_current_drives.end(), drive_data); | ||||
| 			if (it != m_current_drives.end()) | ||||
| 				m_current_drives.erase(it); | ||||
| 		} | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Vojtech Bubnik
						Vojtech Bubnik