Bugbot/UI/bug_info.tscn

60 lines
1.7 KiB
Plaintext

[gd_scene load_steps=3 format=3 uid="uid://bwm02lorpbpcy"]
[ext_resource type="Theme" uid="uid://cw07kl24clcs0" path="res://addons/Bugbot/UI/bug_report_form.theme" id="1_8fgi2"]
[ext_resource type="Script" path="res://addons/Bugbot/UI/bug_info.gd" id="2_6br02"]
[node name="BugInfo" type="ColorRect"]
process_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme = ExtResource("1_8fgi2")
color = Color(0, 0, 0, 0.25)
script = ExtResource("2_6br02")
[node name="VBoxContainer" type="VBoxContainer" parent="."]
layout_mode = 1
anchors_preset = -1
anchor_left = 0.1
anchor_top = 0.7
anchor_right = 0.9
anchor_bottom = 0.9
grow_horizontal = 2
grow_vertical = 2
[node name="Title" type="Label" parent="VBoxContainer"]
layout_mode = 2
size_flags_vertical = 3
text = "Bug summary"
vertical_alignment = 2
[node name="Severity" type="Label" parent="VBoxContainer"]
layout_mode = 2
size_flags_vertical = 1
text = "Severity"
vertical_alignment = 2
[node name="Status" type="Label" parent="VBoxContainer"]
layout_mode = 2
size_flags_vertical = 1
text = "Open"
vertical_alignment = 2
[node name="Buttons" type="HBoxContainer" parent="VBoxContainer"]
layout_mode = 2
[node name="OpenInBrowser" type="Button" parent="VBoxContainer/Buttons"]
layout_mode = 2
size_flags_horizontal = 3
text = "Open In Browser"
[node name="Close" type="Button" parent="VBoxContainer/Buttons"]
layout_mode = 2
size_flags_horizontal = 3
text = "Close"
[connection signal="pressed" from="VBoxContainer/Buttons/OpenInBrowser" to="." method="_on_open_in_browser_pressed" flags=6]
[connection signal="pressed" from="VBoxContainer/Buttons/Close" to="." method="_on_close_pressed" flags=6]