mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-23 06:09:38 +08:00
22 lines
739 B
Python
22 lines
739 B
Python
# Copyright (c) 2017 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import UM.Settings.Models.SettingVisibilityHandler
|
|
|
|
|
|
class MaterialSettingsVisibilityHandler(UM.Settings.Models.SettingVisibilityHandler.SettingVisibilityHandler):
|
|
def __init__(self, parent = None, *args, **kwargs):
|
|
super().__init__(parent = parent, *args, **kwargs)
|
|
|
|
material_settings = {
|
|
"default_material_print_temperature",
|
|
"default_material_bed_temperature",
|
|
"material_standby_temperature",
|
|
#"material_flow_temp_graph",
|
|
"cool_fan_speed",
|
|
"retraction_amount",
|
|
"retraction_speed",
|
|
}
|
|
|
|
self.setVisible(material_settings)
|