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:
authorEnrico Turri <enricoturri@seznam.cz>2019-06-25 10:20:58 +0300
committerEnrico Turri <enricoturri@seznam.cz>2019-06-25 10:20:58 +0300
commit3d755e1bbe642becb73c9f64910616787eade373 (patch)
tree15bdd2338451f3ccb916c210b6bcac9af73d7bec /src/slic3r/GUI/Preferences.cpp
parent27cc66eb54e8da3f0c644196c4ecaa7a9cfd8259 (diff)
Removed 'Use legacy OpenGL 1.1 rendering' option
Diffstat (limited to 'src/slic3r/GUI/Preferences.cpp')
-rw-r--r--src/slic3r/GUI/Preferences.cpp13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/slic3r/GUI/Preferences.cpp b/src/slic3r/GUI/Preferences.cpp
index 7b3187012..827d1f4e0 100644
--- a/src/slic3r/GUI/Preferences.cpp
+++ b/src/slic3r/GUI/Preferences.cpp
@@ -97,16 +97,6 @@ void PreferencesDialog::build()
option = Option (def,"show_incompatible_presets");
m_optgroup->append_single_option_line(option);
- // TODO: remove?
- def.label = L("Use legacy OpenGL 1.1 rendering");
- def.type = coBool;
- def.tooltip = L("If you have rendering issues caused by a buggy OpenGL 2.0 driver, "
- "you may try to check this checkbox. This will disable the layer height "
- "editing and anti aliasing, so it is likely better to upgrade your graphics driver.");
- def.set_default_value(new ConfigOptionBool{ app_config->get("use_legacy_opengl") == "1" });
- option = Option (def,"use_legacy_opengl");
- m_optgroup->append_single_option_line(option);
-
#if __APPLE__
def.label = L("Use Retina resolution for the 3D scene");
def.type = coBool;
@@ -150,8 +140,7 @@ void PreferencesDialog::build()
void PreferencesDialog::accept()
{
- if (m_values.find("no_defaults") != m_values.end() ||
- m_values.find("use_legacy_opengl") != m_values.end()) {
+ if (m_values.find("no_defaults") != m_values.end()) {
warning_catcher(this, wxString::Format(_(L("You need to restart %s to make the changes effective.")), SLIC3R_APP_NAME));
}