A flashcard app for drilling on spellings of words based on audio recordings
on.load_settings = function(settings)
	Font_height = settings.font_height
	Line_height = settings.line_height
	for _,w in ipairs(settings.words) do
		new_word()
		Cursor_word.contents = w
		Cursor_word.lines[1].data = w
		Text.redraw_all(Cursor_word)
	end
	Cursor_word = nil
end