diff options
Diffstat (limited to 'State.hs')
-rw-r--r-- | State.hs | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -53,10 +53,9 @@ data ComposeState = ComposeState { } data EmailState = EmailState { - scrollBufferEm :: [String] - , scrollRowEm :: Int + scrollRowEm :: Int , emailLines :: [String] - , currentEmail :: Message + , currentEmail :: Message } data ColorStyle = ColorStyle { @@ -100,8 +99,7 @@ initialIndexState = IndexState { } initialEmailState = EmailState { - scrollBufferEm = [] - , scrollRowEm = 0 + scrollRowEm = 0 , emailLines = [] , currentEmail = Message [] "Dummy email" } |