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:
authorCampbell Barton <ideasman42@gmail.com>2019-01-15 15:14:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-15 15:15:35 +0300
commit328a0f975be68404604ee2571c1d0c4cf828dfec (patch)
tree5a0a74b069108f122cad0b1b11829cfa9529abbe /source/blender/makesdna/DNA_windowmanager_types.h
parent39acbebe46ef90003201077867a394ebc60d540c (diff)
Cleanup: comment line length (DNA)
Prevents clang-format wrapping text before comments.
Diffstat (limited to 'source/blender/makesdna/DNA_windowmanager_types.h')
-rw-r--r--source/blender/makesdna/DNA_windowmanager_types.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/source/blender/makesdna/DNA_windowmanager_types.h b/source/blender/makesdna/DNA_windowmanager_types.h
index d90dc4071bf..3899e8bcc8d 100644
--- a/source/blender/makesdna/DNA_windowmanager_types.h
+++ b/source/blender/makesdna/DNA_windowmanager_types.h
@@ -245,7 +245,8 @@ typedef struct wmWindow {
short modalcursor;
/** Cursor grab mode. */
short grabcursor;
- /** Internal: tag this for extra mousemove event, makes cursors/buttons active on UI switching. */
+ /** Internal: tag this for extra mousemove event,
+ * makes cursors/buttons active on UI switching. */
short addmousemove;
short pad[4];
@@ -511,16 +512,17 @@ enum {
/* wmOperator flag */
enum {
- /* low level flag so exec() operators can tell if they were invoked, use with care.
- * typically this shouldn't make any difference, but it rare cases its needed (see smooth-view) */
+ /** low level flag so exec() operators can tell if they were invoked, use with care.
+ * Typically this shouldn't make any difference, but it rare cases its needed
+ * (see smooth-view) */
OP_IS_INVOKE = (1 << 0),
- /* So we can detect if an operators exec() call is activated from an interactive repeat. */
+ /** So we can detect if an operators exec() call is activated from an interactive repeat. */
OP_IS_REPEAT = (1 << 1),
- /* When the cursor is grabbed */
+ /** When the cursor is grabbed */
OP_IS_MODAL_GRAB_CURSOR = (1 << 2),
- /* allow modal operators to have the region under the cursor for their context
+ /** Allow modal operators to have the region under the cursor for their context
* (the regiontype is maintained to prevent errors) */
OP_IS_MODAL_CURSOR_REGION = (1 << 3),
};