From a3bd7de8a33a0dcd0fbbfdb41c9a7f84a142335c Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Fri, 8 Feb 2013 13:15:30 +0000 Subject: Added warning below MultiSample User Preference option for Linux systems. (All 8 reports in tracker for selection failures were linux...) --- release/scripts/startup/bl_ui/space_userpref.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py index 32eb1a593eb..b4b6554d4fa 100644 --- a/release/scripts/startup/bl_ui/space_userpref.py +++ b/release/scripts/startup/bl_ui/space_userpref.py @@ -403,6 +403,7 @@ class USERPREF_PT_system(Panel): return (userpref.active_section == 'SYSTEM') def draw(self, context): + import sys layout = self.layout userpref = context.user_preferences @@ -466,6 +467,9 @@ class USERPREF_PT_system(Panel): col.label(text="Window Draw Method:") col.prop(system, "window_draw_method", text="") col.prop(system, "multi_sample", text="") + if sys.platform == "linux" and system.multi_sample != 'NONE': + col.label(text="Might fail for Mesh editing selection!") + col.separator() col.prop(system, "use_region_overlap") col.label(text="Text Draw Options:") col.prop(system, "use_text_antialiasing") -- cgit v1.2.3