summaryrefslogtreecommitdiff
path: root/src/contacts-type-combo.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/contacts-type-combo.vala')
-rw-r--r--src/contacts-type-combo.vala11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/contacts-type-combo.vala b/src/contacts-type-combo.vala
index d9186be..6cdeede 100644
--- a/src/contacts-type-combo.vala
+++ b/src/contacts-type-combo.vala
@@ -113,15 +113,8 @@ public class Contacts.TypeCombo : Grid {
modified = true;
TreeIter iter;
if (combo.get_active_iter (out iter)) {
- if (type_set.is_custom (iter)) {
- custom_mode = true;
- entry.show ();
- entry.grab_focus ();
- combo.hide ();
- } else {
- last_active = iter;
- this.changed ();
- }
+ last_active = iter;
+ this.changed ();
}
}