From 8f515f3b90dc7f87038b14dc98e1bd37b198cbf5 Mon Sep 17 00:00:00 2001 From: whitequark Date: Sun, 8 May 2016 00:02:21 +0000 Subject: [PATCH] GTK: don't raise graphics window in HideTextEditControl(). This screws up window managers like fvwm, which don't respect the ICCCM "Keep Above" flag. I don't remember why it's there and it doesn't appear that removing it has any ill effect. --- src/gtk/gtkmain.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gtk/gtkmain.cpp b/src/gtk/gtkmain.cpp index 5dada39..bcd6cca 100644 --- a/src/gtk/gtkmain.cpp +++ b/src/gtk/gtkmain.cpp @@ -1426,7 +1426,6 @@ void ShowTextEditControl(int x, int y, const std::string &val) { void HideTextEditControl(void) { TW->get_overlay().stop_editing(); - GW->raise(); } bool TextEditControlIsVisible(void) {