summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@qt.io>2017-11-23 15:58:08 +0200
committerAntti Kokko <antti.kokko@qt.io>2017-11-28 09:38:30 +0000
commit123dcb4b1358a29e227ef7cf21f3851ebe6829a0 (patch)
tree1e406ee773685749cbfb591378ac9c52480203b5
parentbdcf654572dc7a2c8b61a7b69e88e0d670240c7c (diff)
Make property graph keyframes bit larger
Larger keyframes are easier to grab with mouse and also now they won't ever get completely obscured by animation keyframes. Change-Id: I4dad6147c2da64557233948eb82d04d7a5975c88 Reviewed-by: Antti Määttä <antti.maatta@qt.io> Reviewed-by: Janne Koskinen <janne.p.koskinen@qt.io> Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
-rw-r--r--src/Authoring/Studio/Palettes/Timeline/PropertyGraphKeyframe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Authoring/Studio/Palettes/Timeline/PropertyGraphKeyframe.cpp b/src/Authoring/Studio/Palettes/Timeline/PropertyGraphKeyframe.cpp
index fd7585ac..ffe83da3 100644
--- a/src/Authoring/Studio/Palettes/Timeline/PropertyGraphKeyframe.cpp
+++ b/src/Authoring/Studio/Palettes/Timeline/PropertyGraphKeyframe.cpp
@@ -49,7 +49,7 @@ CPropertyGraphKeyframe::CPropertyGraphKeyframe(ITimelineItemProperty *inProperty
, m_MaxY(inMaxY)
, m_IsMouseDown(false)
{
- SetSize(CPt(4, 4));
+ SetSize(CPt(6, 8));
PositionKeyframe();
}