mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-16 13:46:54 +00:00
Assure text 'wraps' in CloseError
This commit is contained in:
@@ -100,7 +100,11 @@ class CloseError(bpy.types.Operator):
|
|||||||
return {"FINISHED"}
|
return {"FINISHED"}
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
self.layout.label(text="Warning: your model may be damaged. Really continue?")
|
col = self.layout.column()
|
||||||
|
col.label(text="Warning: your model may be damaged.")
|
||||||
|
col.label(text="Really continue?")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def invoke(self, context, event):
|
def invoke(self, context, event):
|
||||||
return context.window_manager.invoke_props_dialog(self)
|
return context.window_manager.invoke_props_dialog(self)
|
||||||
|
|||||||
Reference in New Issue
Block a user