about summary refs log tree commit diff stats
path: root/log_browser.lua
diff options
context:
space:
mode:
Diffstat (limited to 'log_browser.lua')
-rw-r--r--log_browser.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/log_browser.lua b/log_browser.lua
index e011886..078db06 100644
--- a/log_browser.lua
+++ b/log_browser.lua
@@ -84,7 +84,7 @@ function guess_source(filename)
   end
 end
 
-function log_browser.draw(State)
+function log_browser.draw(State, hide_cursor)
   assert(#State.lines == #State.line_cache)
   local mouse_line_index = log_browser.line_index(State, App.mouse_x(), App.mouse_y())
   local y = State.top
@@ -117,7 +117,7 @@ function log_browser.draw(State)
         if type(line.data) == 'string' then
           local old_left, old_right = State.left,State.right
           State.left,State.right = xleft,xright
-          Text.draw(State, line_index, y, --[[startpos]] 1)
+          Text.draw(State, line_index, y, --[[startpos]] 1, hide_cursor)
           State.left,State.right = old_left,old_right
         else
           height = log_render[line.data.name](line.data, xleft, y, xright-xleft)
tter Kartik K. Agaram <vc@akkartik.com> 2015-05-04 12:19:53 -0700 1253 - new notion of 'predefined globals in scenarios'' href='/akkartik/mu/commit/cpp/072scenario_screen.cc?h=main&id=8a7ad05a804aa4f39d5919a581aba552b7c4f011'>8a7ad05a ^
de49fb42 ^







0487a30e ^
de49fb42 ^











0487a30e ^
de49fb42 ^




de49fb42 ^
8a7ad05a ^
de49fb42 ^

a66c9ae6 ^

de49fb42 ^






a66c9ae6 ^
de49fb42 ^


a66c9ae6 ^
de49fb42 ^











a66c9ae6 ^
de49fb42 ^
0487a30e ^


de49fb42 ^
0487a30e ^
de49fb42 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129