From 88cdbf88cd21861262ed975cd58d363c6eb2b825 Mon Sep 17 00:00:00 2001 From: Pullusb Date: Sat, 22 Oct 2022 16:23:01 +0200 Subject: [PATCH] better readability on preference checklist --- __init__.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/__init__.py b/__init__.py index 0dcbd2d..9d35025 100755 --- a/__init__.py +++ b/__init__.py @@ -617,11 +617,10 @@ class GPTB_prefs(bpy.types.AddonPreferences): if self.pref_tabs == 'CHECKS': layout.label(text='Following checks will be made when clicking "Check File" button:') col = layout.column() - # row = col.row() - + col.use_property_split = True col.prop(self.fixprops, 'check_only') - col.label(text='If dry run is checked, no modification is done') - col.label(text='Note: you can use Ctrl+Click on Check file button to invert the behavior') + col.label(text='If dry run is checked, no modification is done', icon='INFO') + col.label(text='Use Ctrl + Click on "Check File" button to invert the behavior', icon='BLANK1') col.separator() col.prop(self.fixprops, 'lock_main_cam') col.prop(self.fixprops, 'set_scene_res', text=f'Reset Scene Resolution (to {self.render_res_x}x{self.render_res_y})') @@ -639,6 +638,9 @@ class GPTB_prefs(bpy.types.AddonPreferences): col.prop(self.fixprops, 'list_broken_mod_targets') col.prop(self.fixprops, 'autokey_add_n_replace') #-# col.prop(self.fixprops, 'set_cursor_type') + + # col = layout.column() + # col.use_property_split = True col.prop(self.fixprops, "select_active_tool", icon='RESTRICT_SELECT_OFF') col.prop(self.fixprops, "file_path_type") col.prop(self.fixprops, "lock_object_mode")