mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Fix some size values
This commit is contained in:
@ -15,7 +15,6 @@ namespace osu.Game.Overlays.Comments
|
|||||||
{
|
{
|
||||||
public abstract class CommentEditor : CompositeDrawable
|
public abstract class CommentEditor : CompositeDrawable
|
||||||
{
|
{
|
||||||
private const int footer_height = 40;
|
|
||||||
private const int side_padding = 8;
|
private const int side_padding = 8;
|
||||||
|
|
||||||
protected abstract string FooterText { get; }
|
protected abstract string FooterText { get; }
|
||||||
@ -50,7 +49,7 @@ namespace osu.Game.Overlays.Comments
|
|||||||
{
|
{
|
||||||
new EditorTextbox
|
new EditorTextbox
|
||||||
{
|
{
|
||||||
Height = footer_height,
|
Height = 40,
|
||||||
RelativeSizeAxes = Axes.X,
|
RelativeSizeAxes = Axes.X,
|
||||||
PlaceholderText = TextboxPlaceholderText
|
PlaceholderText = TextboxPlaceholderText
|
||||||
},
|
},
|
||||||
@ -58,7 +57,7 @@ namespace osu.Game.Overlays.Comments
|
|||||||
{
|
{
|
||||||
Name = "Footer",
|
Name = "Footer",
|
||||||
RelativeSizeAxes = Axes.X,
|
RelativeSizeAxes = Axes.X,
|
||||||
Height = footer_height,
|
Height = 35,
|
||||||
Padding = new MarginPadding { Horizontal = side_padding },
|
Padding = new MarginPadding { Horizontal = side_padding },
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user