[hackers] [surf] apply nick's patch removing the autoresize functionality || pancake

From: <hg_AT_suckless.org>
Date: Mon, 11 Jun 2012 16:01:07 +0200 (CEST)

changeset: 241:ac9aa239e02f
tag: tip
user: pancake
date: Mon Jun 11 16:01:03 2012 +0200
files: surf.c
description:
apply nick's patch removing the autoresize functionality


diff -r ee772272a082 -r ac9aa239e02f surf.c
--- a/surf.c Thu May 31 11:46:24 2012 +0200
+++ b/surf.c Mon Jun 11 16:01:03 2012 +0200
_AT_@ -95,7 +95,6 @@
 static GdkFilterReturn processx(GdkXEvent *xevent, GdkEvent *event, gpointer d);
 static void progresschange(WebKitWebView *view, GParamSpec *pspec, Client *c);
 static void reload(Client *c, const Arg *arg);
-static void resize(GtkWidget *w, GtkAllocation *a, Client *c);
 static void scroll_h(Client *c, const Arg *arg);
 static void scroll_v(Client *c, const Arg *arg);
 static void scroll(GtkAdjustment *a, const Arg *arg);
_AT_@ -476,7 +475,6 @@
         gtk_window_set_default_size(GTK_WINDOW(c->win), 800, 600);
         g_signal_connect(G_OBJECT(c->win), "destroy", G_CALLBACK(destroywin), c);
         g_signal_connect(G_OBJECT(c->win), "key-press-event", G_CALLBACK(keypress), c);
- g_signal_connect(G_OBJECT(c->win), "size-allocate", G_CALLBACK(resize), c);
 
         /* VBox */
         c->vbox = gtk_vbox_new(FALSE, 0);
_AT_@ -651,19 +649,6 @@
 }
 
 void
-resize(GtkWidget *w, GtkAllocation *a, Client *c) {
- double zoom;
-
- if(c->zoomed)
- return;
- zoom = webkit_web_view_get_zoom_level(c->view);
- if(a->width * a->height < 300 * 400 && zoom != 0.2)
- webkit_web_view_set_zoom_level(c->view, 0.2);
- else if(zoom != 1.0)
- webkit_web_view_set_zoom_level(c->view, 1.0);
-}
-
-void
 scroll_h(Client *c, const Arg *arg) {
  scroll(gtk_scrolled_window_get_hadjustment(GTK_SCROLLED_WINDOW(c->scroll)), arg);
 }
Received on Mon Jun 11 2012 - 16:01:07 CEST

This archive was generated by hypermail 2.3.0 : Mon Jun 11 2012 - 16:12:05 CEST