From 7c3c4604923625e47f41ad1ebab09ae5d2c34d64 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Sat, 13 Jul 2013 15:17:48 +0000
Subject: [PATCH] don't allow to clear project when the lock is set, or when
 onelab is busy

---
 Fltk/graphicWindow.cpp | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/Fltk/graphicWindow.cpp b/Fltk/graphicWindow.cpp
index 03bbbe73db..9b76308953 100644
--- a/Fltk/graphicWindow.cpp
+++ b/Fltk/graphicWindow.cpp
@@ -170,6 +170,10 @@ static void file_open_recent_cb(Fl_Widget *w, void *data)
 
 static void file_clear_cb(Fl_Widget *w, void *data)
 {
+  if(CTX::instance()->lock || FlGui::instance()->onelab->isBusy()) {
+    Msg::Info("I'm busy! Ask me that later...");
+    return;
+  }
   ClearProject();
   onelab_cb(0, (void*)"reset"); // this will call OpenProject
   drawContext::global()->draw();
@@ -543,6 +547,11 @@ static void geometry_edit_cb(Fl_Widget *w, void *data)
 
 void geometry_reload_cb(Fl_Widget *w, void *data)
 {
+  if(CTX::instance()->lock || FlGui::instance()->onelab->isBusy()) {
+    Msg::Info("I'm busy! Ask me that later...");
+    return;
+  }
+
   std::string fileName = GModel::current()->getFileName();
   ClearProject();
 
-- 
GitLab