Skip to content

Commit

Permalink
Merge pull request #302 from andy840119/lyriceditor/make-time-tag-cli…
Browse files Browse the repository at this point in the history
…ckable

Fix cannot click time-tag to move cursor.
  • Loading branch information
andy840119 authored Dec 11, 2020
2 parents 91d2915 + db15e73 commit 4475574
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
using osu.Game.Rulesets.Karaoke.Graphics.Shapes;
using osu.Game.Rulesets.Karaoke.Objects;
using osuTK;
using System;

namespace osu.Game.Rulesets.Karaoke.Edit.Lyrics.Components.TimeTags
{
Expand All @@ -29,6 +28,7 @@ public class DrawableTimeTag : CompositeDrawable
public DrawableTimeTag(TimeTag timeTag)
{
this.timeTag = timeTag;
AutoSizeAxes = Axes.Both;

InternalChild = new RightTriangle
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
using osu.Game.Rulesets.Karaoke.Graphics.Shapes;
using osu.Game.Rulesets.Karaoke.Objects;
using osuTK;
using System;

namespace osu.Game.Rulesets.Karaoke.Edit.Lyrics.Components.TimeTags
{
Expand All @@ -25,6 +24,7 @@ public class DrawableTimeTagCursor : CompositeDrawable
public DrawableTimeTagCursor(TimeTag timeTag)
{
this.timeTag = timeTag;
AutoSizeAxes = Axes.Both;

InternalChild = new RightTriangle
{
Expand Down

0 comments on commit 4475574

Please sign in to comment.