diff --git a/src/TUI.hs b/src/TUI.hs
--- a/src/TUI.hs
+++ b/src/TUI.hs
@@ -8,7 +8,6 @@
 import Control.Monad (guard)
 import Control.Monad.Trans (liftIO)
 import Data.Char (toLower)
-import Data.Monoid ((<>))
 import Data.Text (Text)
 import qualified Data.Text as Text
 
@@ -215,6 +214,7 @@
   }
 stepState opts (AppEvent (UpdateBuffer buf)) (_, h) s@AppState {..} = s
   { commandOutput  = buf
+  , commandRunning = False
   , bufferWidth    = maximum $ 0 : map (lengthSegs . parseANSI) buf
   , bufferHeight   = len
   , _yOffset       = if followTail opts then len - h else _yOffset
diff --git a/trackit.cabal b/trackit.cabal
--- a/trackit.cabal
+++ b/trackit.cabal
@@ -1,5 +1,5 @@
 name:                trackit
-version:             0.7
+version:             0.7.1
 synopsis:            A command-line tool for live monitoring
 description:         @trackit@ is a command-line tool that listens for changes
                      in a user-supplied directory. Whenever there is a change,
