diff options
Diffstat (limited to 'client/src/ui/manage_accounts/account_row.vala')
-rw-r--r-- | client/src/ui/manage_accounts/account_row.vala | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/client/src/ui/manage_accounts/account_row.vala b/client/src/ui/manage_accounts/account_row.vala deleted file mode 100644 index 6ca4daf6..00000000 --- a/client/src/ui/manage_accounts/account_row.vala +++ /dev/null @@ -1,24 +0,0 @@ -using Gtk; - -using Dino.Entities; - -namespace Dino.Ui.ManageAccounts { - -[GtkTemplate (ui = "/org/dino-im/manage_accounts/account_row.ui")] -public class AccountRow : Gtk.ListBoxRow { - - [GtkChild] - public Image image; - - [GtkChild] - public Label jid_label; - - public Account account; - - public AccountRow(StreamInteractor stream_interactor, Account account) { - this.account = account; - Util.image_set_from_scaled_pixbuf(image, (new AvatarGenerator(40, 40, image.scale_factor)).draw_account(stream_interactor, account)); - jid_label.set_label(account.bare_jid.to_string()); - } -} -}
\ No newline at end of file |