diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-09-23 23:41:21 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-09-23 23:41:21 +0800 |
commit | 150fcadcd211229444910f2799212c27a247fa60 (patch) | |
tree | 83933be7df6b496929b1f8b50436641a661152db /shell/e-shell-view.c | |
parent | 28c50b7cb8dfb17659c6043c48d5cc03be537154 (diff) | |
download | gsoc2013-evolution-150fcadcd211229444910f2799212c27a247fa60.tar gsoc2013-evolution-150fcadcd211229444910f2799212c27a247fa60.tar.gz gsoc2013-evolution-150fcadcd211229444910f2799212c27a247fa60.tar.bz2 gsoc2013-evolution-150fcadcd211229444910f2799212c27a247fa60.tar.lz gsoc2013-evolution-150fcadcd211229444910f2799212c27a247fa60.tar.xz gsoc2013-evolution-150fcadcd211229444910f2799212c27a247fa60.tar.zst gsoc2013-evolution-150fcadcd211229444910f2799212c27a247fa60.zip |
Updates for the Bonobo changes from Michael who is having some
troubles with CVS at home (so I commit this on his behalf).
svn path=/trunk/; revision=5560
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index a7a0a766e5..b1444cd6ac 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -212,13 +212,13 @@ storage_set_view_box_map_cb (GtkWidget *widget, shell_view = E_SHELL_VIEW (data); priv = shell_view->priv; - if ((gdk_pointer_grab (widget->window, TRUE, - (GDK_BUTTON_PRESS_MASK - | GDK_BUTTON_RELEASE_MASK - | GDK_ENTER_NOTIFY_MASK - | GDK_LEAVE_NOTIFY_MASK - | GDK_POINTER_MOTION_MASK), - NULL, NULL, GDK_CURRENT_TIME) != 0)) { + if (gdk_pointer_grab (widget->window, TRUE, + (GDK_BUTTON_PRESS_MASK + | GDK_BUTTON_RELEASE_MASK + | GDK_ENTER_NOTIFY_MASK + | GDK_LEAVE_NOTIFY_MASK + | GDK_POINTER_MOTION_MASK), + NULL, NULL, GDK_CURRENT_TIME) != 0) { g_warning ("%s -- pointer grab failed.", __FUNCTION__); e_shell_view_set_folder_bar_mode (shell_view, E_SHELL_VIEW_SUBWINDOW_STICKY); return; |