diff options
| author | dam <dam@gudinoff> | 2022-06-23 11:03:00 +0000 |
|---|---|---|
| committer | dam <dam@gudinoff> | 2022-06-23 11:03:00 +0000 |
| commit | a386c7cc16f7c2f374908424f4703a66e339bee9 (patch) | |
| tree | 06da2bb0f15dd37aca8163557a35e1e4b175e121 /ui | |
| parent | 44d634db3f42ae60b42a1a20892d11faabc3c1b0 (diff) | |
| download | surgery-log-a386c7cc16f7c2f374908424f4703a66e339bee9.tar.zst surgery-log-a386c7cc16f7c2f374908424f4703a66e339bee9.zip | |
Implemented day and night themes.
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/modal_popup/modal_popup.gd | 3 | ||||
| -rw-r--r-- | ui/modal_popup/modal_popup.tscn | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/ui/modal_popup/modal_popup.gd b/ui/modal_popup/modal_popup.gd index 2a45f38..067eccb 100644 --- a/ui/modal_popup/modal_popup.gd +++ b/ui/modal_popup/modal_popup.gd @@ -42,8 +42,7 @@ func open_popup(title: String, item: Control): if visible == true: return - self.color = get_color("background", "Misc") - self.color.a = 0.85 + self.color = get_color("modal_filter", "Misc") self.title.text = title control = item diff --git a/ui/modal_popup/modal_popup.tscn b/ui/modal_popup/modal_popup.tscn index 4ee5939..7a8f5c6 100644 --- a/ui/modal_popup/modal_popup.tscn +++ b/ui/modal_popup/modal_popup.tscn @@ -7,7 +7,6 @@ visible = false anchor_right = 1.0 anchor_bottom = 1.0 -color = Color( 0, 0, 0, 0.870588 ) script = ExtResource( 1 ) [node name="background" type="Panel" parent="."] |
