summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-08-22 17:34:19 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-08-22 17:34:19 +0000
commit5f1ab8a8b8c704fbd9e50954ce437f1c661118ae (patch)
tree89eb8afcbef888d1c8591b5e9b355edcf719808b
parente532d183e4bb7508a1eb6b4b1daaab88b04bb9f4 (diff)
One more FL_RELEASE + modal() bug fix...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2604 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--src/Fl.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx
index 234a26594..d009b7f3e 100644
--- a/src/Fl.cxx
+++ b/src/Fl.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl.cxx,v 1.24.2.41.2.50 2002/08/20 17:33:12 easysw Exp $"
+// "$Id: Fl.cxx,v 1.24.2.41.2.51 2002/08/22 17:34:19 easysw Exp $"
//
// Main event handling code for the Fast Light Tool Kit (FLTK).
//
@@ -614,7 +614,6 @@ int Fl::handle(int e, Fl_Window* window)
return ret;}
case FL_RELEASE: {
- if (modal() && wi != modal()) return 0;
if (pushed()) {
wi = pushed();
pushed_ = 0; // must be zero before callback is done!
@@ -950,5 +949,5 @@ void Fl_Window::flush() {
}
//
-// End of "$Id: Fl.cxx,v 1.24.2.41.2.50 2002/08/20 17:33:12 easysw Exp $".
+// End of "$Id: Fl.cxx,v 1.24.2.41.2.51 2002/08/22 17:34:19 easysw Exp $".
//