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:
authorVojtech Bubnik <bubnikv@gmail.com>2021-03-15 18:19:22 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-03-15 18:19:22 +0300
commit01406fd52182d72cf1789174dd64ee4284e9f2cc (patch)
tree4ce3cdc519ed1cb16b44096fd7c92aeab9b811ef /src/slic3r/GUI/OpenGLManager.cpp
parent84a333e4eda49fe8d3c15aeda1c44ccd75933b49 (diff)
Worked around some quirky Linux file system issues. Namely
the Chromebooks share their file system to Linux using the 9p file system, which does not support setting file ownership. Newly PrusaSlicer will detect platform and it will not panick if copy_file() cannot set file ownership after copying. It just logs the incident, and on chromebooks the loglevel for that incident is "Info", not "Error". Adjusted the full screen mode to contain menu bar. Moved Platform.cpp/hpp to libslic3r
Diffstat (limited to 'src/slic3r/GUI/OpenGLManager.cpp')
-rw-r--r--src/slic3r/GUI/OpenGLManager.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/slic3r/GUI/OpenGLManager.cpp b/src/slic3r/GUI/OpenGLManager.cpp
index 8e8774036..c843da460 100644
--- a/src/slic3r/GUI/OpenGLManager.cpp
+++ b/src/slic3r/GUI/OpenGLManager.cpp
@@ -4,7 +4,8 @@
#include "GUI.hpp"
#include "I18N.hpp"
#include "3DScene.hpp"
-#include "slic3r/Utils/Platform.hpp"
+
+#include "libslic3r/Platform.hpp"
#include <GL/glew.h>
@@ -324,7 +325,7 @@ void OpenGLManager::detect_multisample(int* attribList)
enable_multisample &&
// Disable multi-sampling on ChromeOS, as the OpenGL virtualization swaps Red/Blue channels with multi-sampling enabled,
// at least on some platforms.
- (platform() != Platform::Linux || platform_flavor() != PlatformFlavor::LinuxOnChromium) &&
+ platform_flavor() != PlatformFlavor::LinuxOnChromium &&
wxGLCanvas::IsDisplaySupported(attribList)
? EMultisampleState::Enabled : EMultisampleState::Disabled;
// Alternative method: it was working on previous version of wxWidgets but not with the latest, at least on Windows