Skip to content

Commit

Permalink
Undo alternate drawing default
Browse files Browse the repository at this point in the history
As it is the load handler would override users preferences everytime it loads which is a bad idea
  • Loading branch information
CodyWinch committed May 17, 2022
1 parent b316989 commit 4b641ee
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions ui.py
@@ -1,5 +1,4 @@
import bpy
from platform import system
from bpy.props import *
from bpy.types import Panel
from .operators_modal import *
Expand All @@ -13,10 +12,6 @@ def load_handler(dummy):

addon_prefs.use_n_panel = addon_prefs.use_n_panel

# Run check for user on Mac if so default to using alternate shader
if system() == 'Darwin':
addon_prefs.behavior.alt_drawing = True

return


Expand Down

0 comments on commit 4b641ee

Please sign in to comment.