Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Commit

Permalink
Fix new users buttons visibility (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
lenemter committed Jul 23, 2023
1 parent 1da4520 commit 8888adc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Services/UserManager.vala
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ public class Session.Services.UserManager : Object {
}

user_boxes[uid] = new Session.Widgets.Userbox (user);
user_boxes[uid].show ();
user_grid.add (user_boxes[uid]);

changed ();
Expand Down
1 change: 1 addition & 0 deletions src/Widgets/UserBox.vala
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ public class Session.Widgets.Userbox : Gtk.ListBoxRow {
grid.attach (avatar, 0, 0, 3, 3);
grid.attach (fullname_label, 3, 0, 2, 1);
grid.attach (status_label, 3, 1, 2, 1);
grid.show_all ();

get_style_context ().add_class ("menuitem");
add (grid);
Expand Down

0 comments on commit 8888adc

Please sign in to comment.