aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-07-02 23:38:13 +1000
committerDavid Walter Seikel2014-07-02 23:38:13 +1000
commita8644f29186103f9ef277fdda7bf7f0584c8eae9 (patch)
tree4802f71619eed4332c32a6add69a50a1d38b2a38 /src
parentA little doc tweaking. (diff)
downloadSledjHamr-a8644f29186103f9ef277fdda7bf7f0584c8eae9.zip
SledjHamr-a8644f29186103f9ef277fdda7bf7f0584c8eae9.tar.gz
SledjHamr-a8644f29186103f9ef277fdda7bf7f0584c8eae9.tar.bz2
SledjHamr-a8644f29186103f9ef277fdda7bf7f0584c8eae9.tar.xz
Bleeding edge API updates.
Diffstat (limited to 'src')
-rw-r--r--src/purkle/purkle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/purkle/purkle.c b/src/purkle/purkle.c
index 0dba5cb..d00fd67 100644
--- a/src/purkle/purkle.c
+++ b/src/purkle/purkle.c
@@ -29,9 +29,9 @@ static int append(lua_State *L)
29 if (text) 29 if (text)
30 { 30 {
31 eo_do(history->obj, 31 eo_do(history->obj,
32 elm_obj_entry_entry_append("<br/>"), 32 elm_obj_entry_append("<br/>"),
33 // TODO - Add a time stamp, and log to a file. 33 // TODO - Add a time stamp, and log to a file.
34 elm_obj_entry_entry_append(text), 34 elm_obj_entry_append(text),
35 // TODO - really need a "scroll to the bottom" here, this cursor down wont work if lines get wrapped onto multiple lines. 35 // TODO - really need a "scroll to the bottom" here, this cursor down wont work if lines get wrapped onto multiple lines.
36 elm_obj_entry_cursor_down() 36 elm_obj_entry_cursor_down()
37 ); 37 );