blob: eec311c25aab1d8068b4a0387a218af74b5da3e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
[gd_scene load_steps=4 format=2]
[ext_resource path="res://fonts/DroidSans.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://screens/TimeSlot/Header.gd" type="Script" id=2]
[sub_resource type="DynamicFont" id=2]
size = 100
font_data = ExtResource( 1 )
[node name="TimeslotHeader" type="HBoxContainer"]
margin_left = 20.0
margin_top = 20.0
margin_right = 1046.0
margin_bottom = 198.0
script = ExtResource( 2 )
[node name="Name" type="Label" parent="."]
unique_name_in_owner = true
margin_top = 30.0
margin_right = 799.0
margin_bottom = 147.0
size_flags_horizontal = 3
custom_fonts/font = SubResource( 2 )
text = "Chores"
clip_text = true
[node name="Back" type="Button" parent="."]
margin_left = 803.0
margin_right = 1026.0
margin_bottom = 178.0
custom_fonts/font = SubResource( 2 )
text = "Back"
[connection signal="button_up" from="Back" to="." method="_on_Back_button_up"]
|