Skip to content
Snippets Groups Projects
Commit 6f65fa84 authored by gyan000's avatar gyan000
Browse files

Now possible to send a SMS, with just a phone number

parent 570a95cf
No related branches found
No related tags found
No related merge requests found
......@@ -158,10 +158,26 @@ namespace EOSConnect.Plugin.Popover {
if (insert == true) {
list_box.insert (new ContactListBoxRow ((Contact)contact), -1);
search_entry.text = "";
}
return true;
});
search_entry.activate.connect ( () => {
// TODO - validate phone phone number
var default_contact = new Contact (
search_entry.get_text (),
search_entry.get_text (),
""
);
list_box.insert (new ContactListBoxRow (default_contact), -1);
search_entry.text = "";
});
// left, top, width, height
var grid = new Gtk.Grid ();
grid.margin = 5;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment