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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtech Kral <vojtech@kral.hk>2019-01-24 13:30:29 +0300
committerVojtech Kral <vojtech@kral.hk>2019-01-24 22:03:12 +0300
commitd1c569dd5708811ed472c8780e325b6750e4b10a (patch)
treeb57233952d86447eef741ed395caa94497b13c01 /src/slic3r/GUI/AppConfig.cpp
parent28f1a6f2561d915443e20b7e8e911d8821be4c69 (diff)
Mac: Implement Retina for the 3D scene, fix #97
Diffstat (limited to 'src/slic3r/GUI/AppConfig.cpp')
-rw-r--r--src/slic3r/GUI/AppConfig.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/slic3r/GUI/AppConfig.cpp b/src/slic3r/GUI/AppConfig.cpp
index 28e6e1018..a537870ee 100644
--- a/src/slic3r/GUI/AppConfig.cpp
+++ b/src/slic3r/GUI/AppConfig.cpp
@@ -59,6 +59,11 @@ void AppConfig::set_defaults()
if (get("use_legacy_opengl").empty())
set("use_legacy_opengl", "0");
+#if __APPLE__
+ if (get("use_retina_opengl").empty())
+ set("use_retina_opengl", "1");
+#endif
+
if (get("remember_output_path").empty())
set("remember_output_path", "1");