generated from stilobique/BlenderTemplate
44b0781b94
Update export to find export path without the operator
14 lines
379 B
Python
14 lines
379 B
Python
from .main import GraouPanel
|
|
|
|
|
|
class GraouPanel_thumbnail(GraouPanel):
|
|
bl_idname = 'GRAOU_PT_thumbnail'
|
|
bl_label = 'Thumbnail'
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
layout.label(text='Thumbnail:')
|
|
layout.operator('graou_config.rendering_thumbnail', text='Generate Thumbnail', icon='FILE_IMAGE')
|
|
# TODO Add the thumbnail view
|