summaryrefslogtreecommitdiffstats
path: root/src/Authoring/Qt3DStudio/Palettes/TimelineGraphicsView/ui/TimelineItem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Authoring/Qt3DStudio/Palettes/TimelineGraphicsView/ui/TimelineItem.h')
-rw-r--r--src/Authoring/Qt3DStudio/Palettes/TimelineGraphicsView/ui/TimelineItem.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/Authoring/Qt3DStudio/Palettes/TimelineGraphicsView/ui/TimelineItem.h b/src/Authoring/Qt3DStudio/Palettes/TimelineGraphicsView/ui/TimelineItem.h
index 71d26c0d..e84eb73b 100644
--- a/src/Authoring/Qt3DStudio/Palettes/TimelineGraphicsView/ui/TimelineItem.h
+++ b/src/Authoring/Qt3DStudio/Palettes/TimelineGraphicsView/ui/TimelineItem.h
@@ -39,16 +39,16 @@ public:
explicit TimelineItem(TimelineItem *parent = nullptr);
enum ItemType {
- TypeTimelineItem = UserType + 1,
- TypeInteractiveTimelineItem,
- TypeTreeHeader,
- TypeRowTree,
- TypeRowTreeLabelItem,
- TypeRowTimeline,
- TypeRowTimelineCommentItem,
- TypePlayHead,
- TypeRuler,
- TypeRowMover
+ TypeTimelineItem = UserType << 1,
+ TypeInteractiveTimelineItem = UserType << 2,
+ TypeTreeHeader = UserType << 3,
+ TypeRowTree = UserType << 4,
+ TypeRowTreeLabel = UserType << 5,
+ TypeRowTimeline = UserType << 6,
+ TypeRowTimelineCommentItem = UserType << 7,
+ TypePlayHead = UserType << 8,
+ TypeRuler = UserType << 9,
+ TypeRowMover = UserType << 10
};
int type() const override;