Skip to content

Commit

Permalink
Use plain unicode sun for light mode icon
Browse files Browse the repository at this point in the history
The emoji was causing some kind of string corruption throughout the entirety of blender after being redrawn more than 3-5 times. WTF?
  • Loading branch information
daprice committed Sep 2, 2024
1 parent 0af20af commit 62b1858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class ADMAutoDarkMode(bpy.types.AddonPreferences):
def draw(self, context):
layout = self.layout
col = layout.column()
row = col.row(heading="☀️ Light Mode Theme")
row = col.row(heading=" Light Mode Theme")
row.menu("ADM_MT_light_theme_preset", text=bpy.path.display_name(context.preferences.addons[__package__].preferences.light_theme))

row = col.row(heading="🌙 Dark Mode Theme")
Expand Down

0 comments on commit 62b1858

Please sign in to comment.