diff options
author | nyamatongwe <unknown> | 2005-04-11 06:06:35 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2005-04-11 06:06:35 +0000 |
commit | a4956ebdd35e79b05b0f9c8ef0bd08646de8e935 (patch) | |
tree | 968e3a84dac954a340bd67e4b1460f11d62a2057 | |
parent | 95707c7d4974c78cfd0e8e6e9803a9a44715b8f0 (diff) | |
download | scintilla-mirror-a4956ebdd35e79b05b0f9c8ef0bd08646de8e935.tar.gz |
Fixed 1179713 by masking message box styles before comparison.
-rw-r--r-- | gtk/PlatGTK.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index 9ba18a8ce..e7dab2327 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -2343,7 +2343,8 @@ void Menu::Show(Point pt, Window &) { if ((pt.y + requisition.height) > screenHeight) { pt.y = screenHeight - requisition.height; } - gtk_item_factory_popup(factory, pt.x - 4, pt.y, 3, 0); + gtk_item_factory_popup(factory, pt.x - 4, pt.y - 4, 3, + gtk_get_current_event_time()); } ElapsedTime::ElapsedTime() { |