WoWoWoWololo commited on
Commit
0b4fcec
1 Parent(s): 5673887

render equal to False are added

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -135,7 +135,7 @@ class RowLayout(LayoutBase):
135
  def __init__(self, name: str) -> None:
136
  super().__init__()
137
 
138
- self.main_layout = Row()
139
 
140
  self.global_children_dict[name] = self.main_layout
141
 
@@ -144,7 +144,7 @@ class ColumnLayout(LayoutBase):
144
  def __init__(self, name: str) -> None:
145
  super().__init__()
146
 
147
- self.main_layout = Column()
148
 
149
  self.global_children_dict[name] = self.main_layout
150
 
@@ -153,7 +153,7 @@ class TabLayout(LayoutBase):
153
  def __init__(self, name: str) -> None:
154
  super().__init__()
155
 
156
- self.main_layout = Tab(label=name)
157
 
158
  self.global_children_dict[name] = self.main_layout
159
 
 
135
  def __init__(self, name: str) -> None:
136
  super().__init__()
137
 
138
+ self.main_layout = Row(render=False)
139
 
140
  self.global_children_dict[name] = self.main_layout
141
 
 
144
  def __init__(self, name: str) -> None:
145
  super().__init__()
146
 
147
+ self.main_layout = Column(render=False)
148
 
149
  self.global_children_dict[name] = self.main_layout
150
 
 
153
  def __init__(self, name: str) -> None:
154
  super().__init__()
155
 
156
+ self.main_layout = Tab(label=name, render=False)
157
 
158
  self.global_children_dict[name] = self.main_layout
159