1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-16 08:49:31 +00:00

Revert "new-call-box: Clear entry after dialing"

This reverts commit 528fb11dcd.

It is cumbersome having to retype everything
if you've made a mistake when entering a number.
This commit is contained in:
Evangelos Ribeiro Tzaras 2022-08-08 12:38:59 +02:00
parent 8a928f2008
commit f8c65b9326

View file

@ -228,8 +228,6 @@ dial_clicked_cb (CallsNewCallBox *self)
calls_main_window_dial (CALLS_MAIN_WINDOW (window), text);
else
calls_new_call_box_dial (self, text);
gtk_entry_set_text (entry, "");
}
static void
@ -242,8 +240,6 @@ dial_result_clicked_cb (CallsNewCallBox *self)
calls_origin_dial (origin, address);
else
g_warning ("No suitable origin found. How was this even clicked?");
gtk_entry_set_text (self->address_entry, "");
}