diff options
author | ponce <matteo.bernardini@gmail.com> | 2011-12-27 01:23:20 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-12-27 10:15:24 -0600 |
commit | 81e69e94a0958d5950b6af0aa40cc2cbb3b180cb (patch) | |
tree | 808961d898d8446b4fb523e6917ea9c0e0146b0a /system/pcmanfm/window-resize.patch | |
parent | b26c359f42536ffd415a62abbf5680fb04a64e70 (diff) | |
download | slackbuilds-81e69e94a0958d5950b6af0aa40cc2cbb3b180cb.tar.gz |
system/pcmanfm: Updated for version 0.9.10
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'system/pcmanfm/window-resize.patch')
-rw-r--r-- | system/pcmanfm/window-resize.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/system/pcmanfm/window-resize.patch b/system/pcmanfm/window-resize.patch new file mode 100644 index 0000000000..968ed4f9a9 --- /dev/null +++ b/system/pcmanfm/window-resize.patch @@ -0,0 +1,25 @@ +From 942fd81a00e93fa576f05c6f9a9f52864586f0a0 Mon Sep 17 00:00:00 2001 +From: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> +Date: Mon, 5 Dec 2011 23:39:24 +0800 +Subject: [PATCH] Apply patch #3438582 to fix bug #3325415 - window resize problem. + +--- + src/main-win.c | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/src/main-win.c b/src/main-win.c +index c5af013..3d80372 100644 +--- a/src/main-win.c ++++ b/src/main-win.c +@@ -1326,7 +1326,7 @@ gboolean on_button_press_event(GtkWidget* w, GdkEventButton* evt) + act = gtk_ui_manager_get_action(win->ui, "/Next2"); + gtk_action_activate(act); + } +- return TRUE; ++ return GTK_WIDGET_CLASS(fm_main_win_parent_class)->button_press_event(w, evt); + } + + static void on_reload(GtkAction* act, FmMainWin* win) +-- +1.7.4.1 + |