online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/sandisplay/SanDisplay.gd')
-rw-r--r--ui/sandisplay/SanDisplay.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/sandisplay/SanDisplay.gd b/ui/sandisplay/SanDisplay.gd
index 3ecaafe..b334290 100644
--- a/ui/sandisplay/SanDisplay.gd
+++ b/ui/sandisplay/SanDisplay.gd
@@ -15,7 +15,7 @@ func _ready() -> void:
func create_number_label(num: int) -> void:
var clr := ColorRect.new()
clr.color = Color(1, 1, 1, 0.13)
- clr.rect_min_size = Vector2(70, 30)
+ clr.rect_min_size = Vector2(100, 30)
var label := Label.new()
label.text = " %s." % str(num)
label.align = Label.ALIGN_LEFT
@@ -29,7 +29,7 @@ func create_san_label(text: String, alignment := Label.ALIGN_RIGHT) -> void:
label.text = text
label.valign = Label.VALIGN_CENTER
label.align = alignment
- label.rect_min_size = Vector2(rect_size.x / 2.4, 0)
+ label.rect_min_size = Vector2(rect_size.x / 3, 0)
sans.add_child(label)