Skip to content

Commit a36c4ad

Browse files
authored
1 parent 7e6af49 commit a36c4ad

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

PyPortal_User_Interface/code.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -314,10 +314,11 @@ def switch_view(what_view):
314314

315315
# Update out Labels with display text.
316316
text_box(feed1_label, TABS_Y,
317-
"The text on this screen is wrapped so that all of it fits nicely into a text box that is ### x ###.",
318-
30)
317+
"The text on this screen is wrapped so that all of it fits nicely into a \
318+
text box that is ### x ###.", 30)
319319
text_box(feed1_label, TABS_Y,
320-
'The text on this screen is wrapped so that all of it fits nicely into a text box that is {} x {}.'
320+
'The text on this screen is wrapped so that all of it fits nicely into a \
321+
text box that is {} x {}.'
321322
.format(feed1_label.bounding_box[2], feed1_label.bounding_box[3]*2), 30)
322323

323324
text_box(feed2_label, TABS_Y, 'Tap on the Icon button to meet a new friend.', 18)
@@ -414,9 +415,9 @@ def switch_view(what_view):
414415
elif icon == 3:
415416
icon_name = "Billie"
416417
b.selected = False
417-
text_box(feed2_label, TABS_Y,
418-
"Every time you tap the Icon button the icon image will change. Say hi to {}!"
419-
.format(icon_name), 18)
418+
text_box(feed2_label, TABS_Y,
419+
"Every time you tap the Icon button the icon image will \
420+
change. Say hi to {}!".format(icon_name), 18)
420421
set_image(icon_group, "/images/"+icon_name+".bmp")
421422
if i == 6 and view_live == 3: # only if view3 is visable
422423
b.selected = True

0 commit comments

Comments
 (0)