From bafafcf29f959cd210c5d30b588b229c0aafb78d Mon Sep 17 00:00:00 2001 From: Davide Rosa Date: Mon, 1 Apr 2019 12:19:34 +0200 Subject: [PATCH] Removed GribBox widget from the Editor, not userfriendly. It's better to use it directly from code. --- editor/editor_widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_widgets.py b/editor/editor_widgets.py index 0c20c46f..b8d17265 100644 --- a/editor/editor_widgets.py +++ b/editor/editor_widgets.py @@ -466,7 +466,7 @@ def __init__(self, appInstance, **kwargs): self.add_widget_to_collection(gui.HBox, width='250px', height='250px', style={'top':'20px', 'left':'20px', 'position':'absolute'}) self.add_widget_to_collection(gui.VBox, width='250px', height='250px', style={'top':'20px', 'left':'20px', 'position':'absolute'}) self.add_widget_to_collection(gui.Widget, width='250px', height='250px', style={'top':'20px', 'left':'20px', 'position':'absolute'}) - self.add_widget_to_collection(gui.GridBox, width='250px', height='250px', style={'top':'20px', 'left':'20px', 'position':'absolute'}) + #self.add_widget_to_collection(gui.GridBox, width='250px', height='250px', style={'top':'20px', 'left':'20px', 'position':'absolute'}) self.add_widget_to_collection(gui.Button, width='100px', height='30px', style={'top':'20px', 'left':'20px', 'position':'absolute'}) self.add_widget_to_collection(gui.TextInput, width='100px', height='30px', style={'top':'20px', 'left':'20px', 'position':'absolute'}) self.add_widget_to_collection(gui.Label, width='100px', height='30px', style={'top':'20px', 'left':'20px', 'position':'absolute'})