mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-11 20:59:00 +08:00
Code cleanup
This commit is contained in:
parent
9359d6d3d0
commit
5998ee8f2e
@ -341,9 +341,6 @@ void GCodeViewer::SequentialView::GCodeWindow::load_gcode()
|
||||
try
|
||||
{
|
||||
m_file.open(boost::filesystem::path(m_filename));
|
||||
if (m_file.is_open()) {
|
||||
std::cout << "open file: " << m_filename << "\n";
|
||||
}
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
@ -537,10 +534,8 @@ void GCodeViewer::SequentialView::GCodeWindow::render(float top, float bottom, u
|
||||
#if ENABLE_GCODE_WINDOW_USE_MAPPED_FILE
|
||||
void GCodeViewer::SequentialView::GCodeWindow::stop_mapping_file()
|
||||
{
|
||||
if (m_file.is_open()) {
|
||||
if (m_file.is_open())
|
||||
m_file.close();
|
||||
std::cout << "closed file: " << m_filename << "\n";
|
||||
}
|
||||
}
|
||||
#endif // ENABLE_GCODE_WINDOW_USE_MAPPED_FILE
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user