write hide cursor before any other op

This commit is contained in:
Corey O'Connor 2014-01-28 08:50:10 +01:00
parent b7d8b6d87e
commit 6f976d305e

View File

@ -139,12 +139,13 @@ output_picture dc pic = liftIO $ do
else zipWith (/=) (Vector.toList previous_ops)
(Vector.toList ops)
-- build the Write corresponding to the output image
out = write_default_attr dc
out = (if manip_cursor then write_hide_cursor dc else mempty)
`mappend` write_default_attr dc
`mappend` write_output_ops dc initial_attr diffs ops
`mappend`
(case pic_cursor pic of
_ | not manip_cursor -> mempty
NoCursor -> write_hide_cursor dc
NoCursor -> mempty
Cursor x y ->
let m = cursor_output_map ops $ pic_cursor pic
(ox, oy) = char_to_output_pos m (x,y)