Skip to content
Snippets Groups Projects
Commit b7805d3d authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

cleanup

parent 2663b928
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,7 @@
#include "CommandLine.h"
#include "Context.h"
#include "StringUtils.h"
#include "Generator.h"
#include "gl2ps.h"
class drawContextFltk : public drawContextGlobal{
......@@ -330,6 +331,11 @@ int FlGui::testGlobalShortcuts(int event)
mod_mesh_cb(0, 0);
status = 1;
}
// FIXME TEST
else if(Fl::test_shortcut('4') || Fl::test_shortcut(FL_F + 4)) {
RecombineMesh(GModel::current());
status = 2;
}
else if(Fl::test_shortcut(FL_CTRL + 'q') || Fl::test_shortcut(FL_META + 'q')){
// only necessary when using the system menu bar, but hey, it
// cannot hurt...
......
......@@ -10,15 +10,6 @@
#include "Context.h"
#include "drawContext.h"
#if defined(HAVE_FLTK)
#include <FL/Fl_JPEG_Image.H>
#include <FL/Fl_PNG_Image.H>
#endif
using namespace std;
Camera::~Camera(){};
void Camera::init(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment