diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,9 +1,17 @@
 # git-brunch [![Travis](https://travis-ci.org/andys8/git-brunch.svg?branch=master)](https://travis-ci.org/andys8/git-brunch) ![Actions](https://github.com/andys8/git-brunch/workflows/CI/badge.svg)
 
-A git checkout and rebase command-line tool
+A git branch checkout command-line tool
 
 ![screenshot](https://raw.githubusercontent.com/andys8/git-brunch/master/screenshot.png)
 
+## Features
+
+- Checkout local or remote branch
+- Rebase onto a branch
+- Search for a branch
+- Delete a branch
+- Fetch / Update
+
 ## Usage
 
 Run `git-brunch` or `git brunch`.
@@ -89,7 +97,9 @@
 ## Release
 
 - Bump version in `package.yaml` and `default.nix`
-- Create a tag `v0.0.0` locally and push it
+- Create a commit `v0.0.0`
+- Create a tag `v0.0.0`
+- Push commit and push tag
 - Release on github will be created by CI
 - Update release description
 - `stack upload .`
diff --git a/app/GitBrunch.hs b/app/GitBrunch.hs
--- a/app/GitBrunch.hs
+++ b/app/GitBrunch.hs
@@ -117,7 +117,9 @@
  where
   padding = str " "
   maxWidth w = C.hCenter . hLimit w
-  toBranchList r lens' = state ^. lens' & drawBranchList (state ^. focusL == r)
+  toBranchList r lens' =
+    let isActive = state ^. focusL == r && not (_isEditingFilter state)
+    in  state ^. lens' & drawBranchList isActive
   filterEdit  = if _isEditingFilter state then drawFilter state else emptyWidget
   branchLists = hBox
     [ C.hCenter $ toBranchList RLocal localBranchesL
diff --git a/git-brunch.cabal b/git-brunch.cabal
--- a/git-brunch.cabal
+++ b/git-brunch.cabal
@@ -1,13 +1,13 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.31.2.
+-- This file has been generated from package.yaml by hpack version 0.33.0.
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 9068dd582fd66de4b8c0c3a49502d99cf46bfe110966c54ce4d8fd398c238146
+-- hash: 371122b89d6b4ccfc16cbaff0aff2cf54b1abe0027417524c1f93003f7a1f40c
 
 name:           git-brunch
-version:        1.4.0.0
+version:        1.4.1.0
 synopsis:       git checkout command-line tool
 description:    Please see the README on GitHub at <https://github.com/andys8/git-brunch>
 category:       Git
