summaryrefslogtreecommitdiff
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
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".
-rw-r--r--README2
-rw-r--r--browser.c2
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;
}