From: Peter Hofmann Date: Fri, 4 Jul 2014 15:19:36 +0000 (+0200) Subject: Mod1 + d closes the download manager X-Git-Tag: v1.0.0~237 X-Git-Url: https://git.armaanb.net/?p=chorizo.git;a=commitdiff_plain;h=21d8fd6d03fed3a8e9544e577b9eb9826e60d534 Mod1 + d closes the download manager While Mod1 + q is consistent with the main window, it also poses the risk of accidentally closing the main window. With Mod1 + d it's more like a "toggle the download manager". --- diff --git a/README b/README index 8c7466d..f89e5cd 100644 --- a/README +++ b/README @@ -166,7 +166,7 @@ Main windows Download manager - Mod1 + q + Mod1 + d Close the download manager (downloads are not aborted). diff --git a/browser.c b/browser.c index cd62ec8..1c7155c 100644 --- a/browser.c +++ b/browser.c @@ -594,7 +594,7 @@ key_downloadmanager(GtkWidget *widget, GdkEvent *event, gpointer data) { switch (((GdkEventKey *)event)->keyval) { - case GDK_KEY_q: /* close window (left hand) */ + case GDK_KEY_d: /* close window (left hand) */ gtk_widget_hide(dm.win); return TRUE; }