Skip to content

Commit

Permalink
chore: align error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
saturday06 committed Jul 20, 2024
1 parent 9aebfcf commit 51e71a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/io_scene_vrm/editor/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ def draw_errors(

if error_errors:
layout.label(text="Error", icon="ERROR")
column = layout.column()
column = layout.column(align=True)
for error in error_errors:
column.prop(
error,
Expand All @@ -916,7 +916,7 @@ def draw_errors(

if warning_errors:
layout.label(text="Warning", icon="CANCEL")
column = layout.column()
column = layout.column(align=True)
for error in warning_errors:
column.prop(
error,
Expand All @@ -927,7 +927,7 @@ def draw_errors(

if info_errors:
layout.label(text="Info", icon="INFO")
column = layout.column()
column = layout.column(align=True)
for error in info_errors:
column.prop(
error,
Expand Down

0 comments on commit 51e71a1

Please sign in to comment.