From 42624592cb9bd244cb92ae07d06e84ae1ff88c34 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 10 Mar 2010 12:25:03 +0100 Subject: updated for version 7.2.386 Problem: Focus hack for KDE 3.1 causes problems for other window managers. Solution: Remove the hack. (forwarded by Joel Bradshaw) --- src/gui_gtk.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'src/gui_gtk.c') diff --git a/src/gui_gtk.c b/src/gui_gtk.c index 0535e204f7..6a657a3ee8 100644 --- a/src/gui_gtk.c +++ b/src/gui_gtk.c @@ -2313,19 +2313,6 @@ gui_mch_dialog(int type, /* type of dialog */ gtk_widget_destroy(dialog); } - /* Terrible hack: When the text area still has focus when we remove the - * dialog, somehow gvim loses window focus. This is with "point to type" - * in the KDE 3.1 window manager. Warp the mouse pointer to outside the - * window and back to avoid that. */ - if (!gui.in_focus) - { - int x, y; - - gdk_window_get_pointer(gui.drawarea->window, &x, &y, NULL); - gui_mch_setmouse(-100, -100); - gui_mch_setmouse(x, y); - } - return response > 0 ? response : 0; } -- cgit v1.2.3