uncommenting source()

This commit is contained in:
Enno Boland (tox) 2009-10-14 15:19:00 +02:00
parent fe87a88954
commit 24bbd6be02

4
surf.c
View File

@ -595,10 +595,10 @@ showsearch(Client *c, const Arg *arg) {
void void
source(Client *c, const Arg *arg) { source(Client *c, const Arg *arg) {
Arg a = { .b = FALSE }; Arg a = { .b = FALSE };
/*gboolean s; gboolean s;
s = webkit_web_view_get_view_source_mode(c->view); s = webkit_web_view_get_view_source_mode(c->view);
webkit_web_view_set_view_source_mode(c->view, c->source);*/ webkit_web_view_set_view_source_mode(c->view, !s);
reload(c, &a); reload(c, &a);
} }