diff options
-rw-r--r-- | chat.lua | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -9,9 +9,10 @@ local Mw,Mh = M.getSize() local scorewidth=10 local lbw = 4+16+scorewidth local wLog = window.create(M,1,12,Mw,Mh-12) - wLog.setBackgroundColor(colors.blue) + wLog.setBackgroundColor(colors.white) + wLog.setTextColor(colors.black) wLog.clear() - wLog.write("LOG") + wLog.setCursorBlink(true) local wLb = window.create(M,Mw-lbw+1,1,lbw,11) -- wLb.setBackgroundColor(colors.red) -- wLb.clear() |