[Vimprobable-users] [PATCH] Remove feedback for toggled proxy.
Vimprobable is a lean web browser optimised for full keyboard control
Brought to you by:
hanness
From: Daniel C. <dan...@gm...> - 2011-11-04 00:42:55
|
The feedback caused broken lines in command history. Feedback was removed because no other :command gives feedback about his state. Daniel --- main.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index eb1d66f..ef97d1a 100644 --- a/main.c +++ b/main.c @@ -2041,7 +2041,6 @@ toggle_proxy(gboolean onoff) { if (onoff == FALSE) { g_object_set(session, "proxy-uri", NULL, NULL); - give_feedback("Proxy deactivated"); } else { filename = (char *)g_getenv("http_proxy"); @@ -2063,7 +2062,6 @@ toggle_proxy(gboolean onoff) { proxy_uri = soup_uri_new(filename); } g_object_set(session, "proxy-uri", proxy_uri, NULL); - give_feedback("Proxy activated"); } } } -- 1.7.4.1 |