From 21d592ff721e50be3a74c7834b04aca3af41fd23 Mon Sep 17 00:00:00 2001 From: Johannes Hofmann Date: Wed, 8 Apr 2009 09:49:20 +0200 Subject: change cursor while making screen dump --- src/gipfel.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gipfel.cxx b/src/gipfel.cxx index d8ca0b9..d0c87bd 100644 --- a/src/gipfel.cxx +++ b/src/gipfel.cxx @@ -161,7 +161,9 @@ void save_cb() { } void dump_cb(Fl_Widget * o, void*) { + fl_cursor(FL_CURSOR_WAIT); ScreenDump dmp(gipf); // needs to be done before fl_file_chooser() + fl_cursor(FL_CURSOR_DEFAULT); char *file = fl_file_chooser("Save Screen Dump As?", "*.jpg", NULL); if (file && confirm_overwrite(file)) { JPEGOutputImage out(file, 95); -- cgit v1.2.3