WoWoWoWololo commited on
Commit
5673887
·
verified ·
1 Parent(s): b9e1e27

top_textbox variable's interactive value is set to False

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -206,7 +206,7 @@ class SecondTab(TabLayout):
206
 
207
  self.column = ColumnLayout(name="second tab column layout")
208
 
209
- self.top_textbox = Textbox(value="Top Textbox", interactive=True, render=False)
210
  self.bottom_textbox = Textbox(value="Bottom Textbox", render=False)
211
 
212
  self.column.add_component("top_textbox", self.top_textbox)
 
206
 
207
  self.column = ColumnLayout(name="second tab column layout")
208
 
209
+ self.top_textbox = Textbox(value="Top Textbox", interactive=False, render=False)
210
  self.bottom_textbox = Textbox(value="Bottom Textbox", render=False)
211
 
212
  self.column.add_component("top_textbox", self.top_textbox)