diff options
Diffstat (limited to 'screens/TaskManager/TaskItem.tscn')
-rw-r--r-- | screens/TaskManager/TaskItem.tscn | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/screens/TaskManager/TaskItem.tscn b/screens/TaskManager/TaskItem.tscn new file mode 100644 index 0000000..ef223ee --- /dev/null +++ b/screens/TaskManager/TaskItem.tscn @@ -0,0 +1,48 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://fonts/DroidSans.ttf" type="DynamicFontData" id=1] +[ext_resource path="res://screens/TaskManager/TaskItem.gd" type="Script" id=2] + +[sub_resource type="DynamicFont" id=3] +size = 72 +font_data = ExtResource( 1 ) + +[node name="TaskItem" type="MarginContainer"] +margin_right = 1026.0 +margin_bottom = 110.0 +custom_constants/margin_top = 5 +custom_constants/margin_bottom = 5 +script = ExtResource( 2 ) + +[node name="Button" type="Button" parent="."] +margin_top = 5.0 +margin_right = 1026.0 +margin_bottom = 105.0 +rect_min_size = Vector2( 0, 100 ) + +[node name="HBoxContainer" type="HBoxContainer" parent="Button"] +margin_right = 1026.0 +margin_bottom = 100.0 +alignment = 2 + +[node name="Name" type="Label" parent="Button/HBoxContainer"] +unique_name_in_owner = true +margin_top = 8.0 +margin_right = 797.0 +margin_bottom = 92.0 +size_flags_horizontal = 3 +custom_fonts/font = SubResource( 3 ) +text = "Stretching" +clip_text = true + +[node name="Length" type="Label" parent="Button/HBoxContainer"] +unique_name_in_owner = true +margin_left = 801.0 +margin_top = 8.0 +margin_right = 1026.0 +margin_bottom = 92.0 +custom_fonts/font = SubResource( 3 ) +text = "10 min" +align = 2 + +[connection signal="button_up" from="Button" to="." method="_on_Button_button_up"] |