From 80080026db773efb4d9e6a9cf28fe73612a839a1 Mon Sep 17 00:00:00 2001 From: cylgom Date: Sat, 30 Jun 2018 10:54:37 +0200 Subject: [PATCH] disabled manual editing of desktop field --- src/ncui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ncui.c b/src/ncui.c index 14bd4a7..39c735f 100644 --- a/src/ncui.c +++ b/src/ncui.c @@ -92,7 +92,7 @@ void init_form(struct ncform* form, char** list, int max_de, int* de_id) } set_field_opts(form->fields[i], - O_VISIBLE | O_PUBLIC | O_EDIT | O_ACTIVE); + O_VISIBLE | O_PUBLIC | O_ACTIVE); /* adds the right arrow */ ++i; form->fields[i] = new_field(1, 2, 0, form->label_pad + 32, 0, 0);