Browse Source

make instructions allow new lines (tab not yet working)

Daniel Sheffield 2 years ago
parent
commit
10e3373d1d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/activities/RecipeEditor.py

+ 1 - 1
app/activities/RecipeEditor.py

@@ -113,7 +113,7 @@ class RecipeEditor(FocusWidget):
           (AutoCompleteEdit(('bg', 'product#0')), AutoCompleteEdit(('bg', 'unit#0'))),
           (AutoCompleteEdit(('bg', 'product#0')), AutoCompleteEdit(('bg', 'unit#0'))),
         ]
         ]
         self.organic = NoTabCheckBox(('bg', "Organic"), state='mixed')
         self.organic = NoTabCheckBox(('bg', "Organic"), state='mixed')
-        self.instructions = Edit(f'')
+        self.instructions = Edit(f'', multiline=True, allow_tab=True)
 
 
         bottom_pane = [
         bottom_pane = [
             self.organic,
             self.organic,