diff options
| author | fiaxh <git@lightrise.org> | 2023-04-22 19:47:32 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi92@disroot.org> | 2026-02-10 23:40:47 +0100 |
| commit | be04a35e374a1ad1b75fe7feed4eab6e40139aac (patch) | |
| tree | fe27af7ba81eab7f735eb082e1463c8379dbba97 /main/src | |
| parent | 6f04aac3d9ce74283b729b4afb0ab7f220237534 (diff) | |
| download | dino-be04a35e374a1ad1b75fe7feed4eab6e40139aac.tar.gz | |
Fix call window styling
Diffstat (limited to 'main/src')
| -rw-r--r-- | main/src/ui/call_window/participant_widget.vala | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/main/src/ui/call_window/participant_widget.vala b/main/src/ui/call_window/participant_widget.vala index f18ae242..08ec8706 100644 --- a/main/src/ui/call_window/participant_widget.vala +++ b/main/src/ui/call_window/participant_widget.vala @@ -50,14 +50,11 @@ namespace Dino.Ui { header_bar.show_close_button = is_highest_row; if (is_highest_row) { - header_bar.get_style_context().add_class("call-header-background"); Gtk.Settings? gtk_settings = Gtk.Settings.get_default(); if (gtk_settings != null) { string[] buttons = gtk_settings.gtk_decoration_layout.split(":"); header_bar.decoration_layout = (is_start ? buttons[0] : "") + ":" + (is_end && buttons.length == 2 ? buttons[1] : ""); } - } else { - header_bar.get_style_context().remove_class("call-header-background"); } reveal_or_hide_controls(); } |
