Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_userpref.py
| Show First 20 Lines • Show All 529 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| col.separator() | col.separator() | ||||
| col.label(text="Anisotropic Filtering") | col.label(text="Anisotropic Filtering") | ||||
| col.prop(system, "anisotropic_filter", text="") | col.prop(system, "anisotropic_filter", text="") | ||||
| col.separator() | col.separator() | ||||
| col.label(text="Window Draw Method:") | |||||
| col.prop(system, "window_draw_method", text="") | |||||
| col.prop(system, "multi_sample", text="") | col.prop(system, "multi_sample", text="") | ||||
| if sys.platform == "linux" and system.multi_sample != 'NONE': | if sys.platform == "linux" and system.multi_sample != 'NONE': | ||||
| col.label(text="Might fail for Mesh editing selection!") | col.label(text="Might fail for Mesh editing selection!") | ||||
| col.separator() | col.separator() | ||||
| col.prop(system, "use_region_overlap") | col.prop(system, "use_region_overlap") | ||||
| col.separator() | col.separator() | ||||
| ▲ Show 20 Lines • Show All 1,055 Lines • Show Last 20 Lines | |||||