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-12-19 07:48:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-19 07:50:48 +0300
commitc14e352d2ceb62288349bfc7afa4453d6cf38646 (patch)
treee61a2987081e2b07e23b086dae457965f69ec99a /source/blender/windowmanager/gizmo/WM_gizmo_types.h
parent7ba1489bd7235a333a4f99040b3c9e7501bf346c (diff)
Fix error in recent gizmo tweak workaround
Diffstat (limited to 'source/blender/windowmanager/gizmo/WM_gizmo_types.h')
-rw-r--r--source/blender/windowmanager/gizmo/WM_gizmo_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/windowmanager/gizmo/WM_gizmo_types.h b/source/blender/windowmanager/gizmo/WM_gizmo_types.h
index fc876b56de7..c667dd564f7 100644
--- a/source/blender/windowmanager/gizmo/WM_gizmo_types.h
+++ b/source/blender/windowmanager/gizmo/WM_gizmo_types.h
@@ -461,12 +461,12 @@ typedef struct wmGizmoGroup {
struct ReportList *reports;
/** Has the same result as hiding all gizmos individually. */
- struct {
- /* Reasons for hiding. */
- union {
+ union {
+ /** Reasons for hiding. */
+ struct {
uint delay_refresh_for_tweak : 1;
};
- /* All, when we only want to check. */
+ /** All, when we only want to check if any are hidden. */
uint any;
} hide;