Skip to content

Commit

Permalink
Reduce size of hidden toggle slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Sep 26, 2024
1 parent 16fc413 commit b1a05f4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ public OsuDirectorySelectorHiddenToggle()
{
RelativeSizeAxes = Axes.None;
AutoSizeAxes = Axes.None;
Size = new Vector2(100, OsuDirectorySelectorBreadcrumbDisplay.HEIGHT);
Size = new Vector2(140, OsuDirectorySelectorBreadcrumbDisplay.HEIGHT);
Margin = new MarginPadding { Right = OsuDirectorySelectorBreadcrumbDisplay.HORIZONTAL_PADDING, };
Anchor = Anchor.CentreLeft;
Origin = Anchor.CentreLeft;
LabelTextFlowContainer.Anchor = Anchor.CentreLeft;
LabelTextFlowContainer.Origin = Anchor.CentreLeft;
LabelText = @"Show hidden";

Scale = new Vector2(0.8f);
}

[BackgroundDependencyLoader(true)]
Expand Down

0 comments on commit b1a05f4

Please sign in to comment.