summaryrefslogtreecommitdiff
path: root/browser.c
diff options
context:
space:
mode:
authorPeter Hofmann <scm@uninformativ.de>2014-07-04 17:19:36 +0200
committerPeter Hofmann <scm@uninformativ.de>2014-07-04 17:19:36 +0200
commit21d8fd6d03fed3a8e9544e577b9eb9826e60d534 (patch)
tree640fc35280f161dad5d37875c9eac8ce454b436b /browser.c
parent332a083e69c96be8cf1258f6fad751c3eefc550f (diff)
downloadlariza-21d8fd6d03fed3a8e9544e577b9eb9826e60d534.tar.gz
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".
Diffstat (limited to 'browser.c')
-rw-r--r--browser.c2
1 files changed, 1 insertions, 1 deletions
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;
}