From 4590ecb234d31fe0d6e215232b2b67560f6f80e5 Mon Sep 17 00:00:00 2001 From: Sascha Kruse Date: Thu, 9 Aug 2012 11:08:48 +0200 Subject: [PATCH] fix deleting geometry on -history_key and -all_key --- dunst.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dunst.c b/dunst.c index a0eb937..6cbe2a7 100644 --- a/dunst.c +++ b/dunst.c @@ -1211,8 +1211,10 @@ void parse_cmdline(int argc, char *argv[]) break; case 'K': history_ks.str = optarg; + break; case 'A': close_all_ks.str = optarg; + break; case 'g': geom = optarg; break;