Skip to content

Commit

Permalink
Fix some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
lainsce committed Jul 27, 2024
1 parent 883063a commit d7cdafe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion data/ui/window.blp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ template $BudsWindow : He.ApplicationWindow {
default-width: 800;
default-height: 600;
width-request: 360;
height-request: 266;
height-request: 294;

Box {
orientation: vertical;
Expand Down Expand Up @@ -85,6 +85,7 @@ template $BudsWindow : He.ApplicationWindow {
show-left-title-buttons: bind album.folded;
show-right-title-buttons: true;
show-back: bind album.folded;
viewtitle-label: "";
}

Stack stack {
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/contact_row.vala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace Buds {
public Folks.Individual individual { get; construct; }

private Gtk.Label title = new Gtk.Label ("");
private He.Avatar image = new He.Avatar (-1, "", "");
private He.Avatar image = new He.Avatar (-1, "", "", false);
public bool selected { get; set; }

public ContactRow (Folks.Individual individual, bool selected) {
Expand Down

0 comments on commit d7cdafe

Please sign in to comment.