From 80811181d2af8a3ab81f7293ad70c3541d104749 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Thu, 30 Dec 2004 23:46:13 +0000
Subject: [PATCH] show 'About' window in the middle of the screen

---
 Fltk/GUI.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Fltk/GUI.cpp b/Fltk/GUI.cpp
index cf767d16d4..d2ad6f6859 100644
--- a/Fltk/GUI.cpp
+++ b/Fltk/GUI.cpp
@@ -1,4 +1,4 @@
-// $Id: GUI.cpp,v 1.400 2004-12-30 23:39:48 geuzaine Exp $
+// $Id: GUI.cpp,v 1.401 2004-12-30 23:46:13 geuzaine Exp $
 //
 // Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle
 //
@@ -3671,8 +3671,8 @@ void GUI::create_about_window()
     o->callback(cancel_cb, (void *)about_window);
   }
 
-  about_window->position(m_window->x() + m_window->w() / 2 - width / 2,
-			 m_window->y());
+  about_window->position(Fl::x() + Fl::w()/2 - width / 2,
+			 Fl::y() + Fl::h()/2 - height / 2);
 
   about_window->set_modal();
   about_window->end();
-- 
GitLab