aboutsummaryrefslogtreecommitdiff
path: root/Command/VCycle.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-03-02 15:36:45 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-03-02 15:36:45 -0400
commit4391e9bde8803a014ef723339dde5fdb386f4ba1 (patch)
treef27e5dad87edd48c938a9b2bf7b1a74bfd05b2e0 /Command/VCycle.hs
parentd6744f85d3ad9b924eeee47148d34bec6992b5eb (diff)
vadd: Allow listing multiple desired values for a field.
Diffstat (limited to 'Command/VCycle.hs')
-rw-r--r--Command/VCycle.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/VCycle.hs b/Command/VCycle.hs
index b41e099a4..f7da47fa2 100644
--- a/Command/VCycle.hs
+++ b/Command/VCycle.hs
@@ -36,6 +36,6 @@ start = go =<< currentView
else next $ next $ checkoutViewBranch v' narrowView
vcycle rest (c:cs)
- | multiValue (viewFilter c) = rest ++ cs ++ [c]
+ | viewVisible c = rest ++ cs ++ [c]
| otherwise = vcycle (c:rest) cs
vcycle rest c = rest ++ c