summaryrefslogtreecommitdiff
path: root/src/Fl_Menu.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-12-08 21:04:40 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-12-08 21:04:40 +0000
commitd3fb66b4dd23d21de81a5419dd74dd29a0ecdf32 (patch)
tree9f1d2795253d1a41fa92d6ce84915a0b29528c3f /src/Fl_Menu.cxx
parent02646a21dc20b2e02d8d23e8de65229437d75fcd (diff)
OpenGL patches from Bill.
git-svn-id: file:///fltk/svn/fltk/trunk@152 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Menu.cxx')
-rw-r--r--src/Fl_Menu.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Fl_Menu.cxx b/src/Fl_Menu.cxx
index 8e37b8171..11afac67e 100644
--- a/src/Fl_Menu.cxx
+++ b/src/Fl_Menu.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Menu.cxx,v 1.7 1998/12/02 15:39:32 mike Exp $"
+// "$Id: Fl_Menu.cxx,v 1.8 1998/12/08 21:04:35 mike Exp $"
//
// Menu code for the Fast Light Tool Kit (FLTK).
//
@@ -266,7 +266,7 @@ menuwindow::~menuwindow() {
void menuwindow::position(int X, int Y) {
if (title) {title->position(X, title->y()+Y-y());}
Fl_Menu_Window::position(X, Y);
- x(X); y(Y); // don't wait for response from X
+ // x(X); y(Y); // don't wait for response from X
}
// scroll so item i is visible on screen
@@ -279,7 +279,7 @@ void menuwindow::autoscroll(int i) {
Y = -Y-10;
}
Fl_Menu_Window::position(x(), y()+Y);
- y(y()+Y); // don't wait for response from X
+ // y(y()+Y); // don't wait for response from X
}
////////////////////////////////////////////////////////////////
@@ -703,5 +703,5 @@ const Fl_Menu_Item* Fl_Menu_Item::test_shortcut() const {
}
//
-// End of "$Id: Fl_Menu.cxx,v 1.7 1998/12/02 15:39:32 mike Exp $".
+// End of "$Id: Fl_Menu.cxx,v 1.8 1998/12/08 21:04:35 mike Exp $".
//