Skip to content

Commit

Permalink
Add Install Pillow tooltip about loading time
Browse files Browse the repository at this point in the history
We agreed on "This could take a few minutes" (maximum of 20 minutes in the works success case).
  • Loading branch information
bonjorno7 committed May 6, 2021
1 parent 1fa52fb commit 19a21e3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bip/t3dn_bip/ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ class InstallPillow:
- Make sure to set bl_idname, it must be unique.
'''
bl_label = 'Install Pillow'
bl_description = 'Install the Python Imaging Library'
bl_description = '.\n'.join((
'Install the Python Imaging Library',
'This could take a few minutes',
))
bl_options = {'REGISTER', 'INTERNAL'}

def execute(self: bpy.types.Operator, context: bpy.types.Context) -> set:
Expand Down

1 comment on commit 19a21e3

@bonjorno7
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"works" was meant to be "worst"

Please sign in to comment.