mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-24 21:50:34 +01:00
merge: branch 'nmtui-tilde'
nmtui: allow enter tilde in search domains Closes #1862 https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/2356
This commit is contained in:
commit
68c8c8eb80
1 changed files with 1 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ strings_transform_from_entry(GBinding *binding,
|
|||
static gboolean
|
||||
hostname_filter(NmtNewtEntry *entry, const char *text, int ch, int position, gpointer user_data)
|
||||
{
|
||||
return g_ascii_isalnum(ch) || ch == '.' || ch == '-';
|
||||
return g_ascii_isalnum(ch) || ch == '.' || ch == '-' || ch == '~';
|
||||
}
|
||||
|
||||
static NmtNewtWidget *
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue