From 21d8fd6d03fed3a8e9544e577b9eb9826e60d534 Mon Sep 17 00:00:00 2001 From: Peter Hofmann Date: Fri, 4 Jul 2014 17:19:36 +0200 Subject: 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". --- README | 2 +- browser.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; } -- cgit v1.2.3