Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-12-05 20:37:31 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-12-05 20:37:31 +0400
commitc40d8921b8b61c0465a2fe9bca72dc418bf39c7d (patch)
tree4b148b53ead94dbbba6c5ef3438f3f730494f167 /source/blender/windowmanager/WM_api.h
parent72827ee53190d74ebaa083f2bb616d9bc4b2e078 (diff)
Fix #28107: save screenshot operator option to save full screen or only a single
editor was not working. Solution is to take full screenshot and crop it on save. Also fixed screenshot showing popup menu used to execute operator.
Diffstat (limited to 'source/blender/windowmanager/WM_api.h')
-rw-r--r--source/blender/windowmanager/WM_api.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h
index 1d8161086b0..2c0e22337c0 100644
--- a/source/blender/windowmanager/WM_api.h
+++ b/source/blender/windowmanager/WM_api.h
@@ -331,6 +331,9 @@ void WM_progress_clear(struct wmWindow *win);
void WM_console_toggle(struct bContext *C, short show);
#endif
+ /* Draw (for screenshot) */
+void WM_redraw_windows(struct bContext *C);
+
/* debugging only, convenience function to write on crash */
int write_crash_blend(void);