Calls: Show invite button quicker

This commit is contained in:
fiaxh 2022-02-12 17:32:13 +01:00
parent b586aebbac
commit 06f0bc00f1
2 changed files with 7 additions and 3 deletions

View File

@ -156,7 +156,7 @@ public class Dino.Ui.CallWindowController : Object {
update_audio_device_choices();
update_video_device_choices();
} else if (participant_widgets.size >= 1) {
} else if (participant_widgets.size > 1) {
participant_widgets.values.@foreach((widget) => widget.may_show_invite_button = true);
}
});

View File

@ -19,6 +19,7 @@ namespace Dino.Ui {
public string? participant_name;
bool is_highest_row = false;
bool is_start_row = false;
public bool controls_active { get; set; }
public bool may_show_invite_button { get; set; }
@ -44,12 +45,14 @@ namespace Dino.Ui {
this.add_overlay(header_bar);
this.notify["controls-active"].connect(reveal_or_hide_controls);
this.notify["may-show-invite-button"].connect(reveal_or_hide_controls);
}
public void on_row_changed(bool is_highest, bool is_lowest, bool is_start, bool is_end) {
is_highest_row = is_highest;
this.is_highest_row = is_highest;
this.is_start_row = is_start;
header_bar.show_close_button = is_highest_row;
invite_button.visible = may_show_invite_button && is_highest_row && is_start;
if (is_highest_row) {
header_bar.get_style_context().add_class("call-header-background");
Gtk.Settings? gtk_settings = Gtk.Settings.get_default();
@ -105,6 +108,7 @@ namespace Dino.Ui {
private void reveal_or_hide_controls() {
header_bar.opacity = controls_active ? 1.0 : 0.0;
invite_button.visible = may_show_invite_button && is_highest_row && is_start_row;
}
}
}