X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=src%2Fwindow.c;h=66d708bfc2b722503281e1ec335ab70f7ff7ae32;hb=e7b655fa76e4a42b1a0228bd7e9290998a1fbeae;hp=574038a7040b4d5b4c378997efb4224316fdb746;hpb=c8c67078daea54fdf03b46726a77ecf26cf65be4;p=rodin%2Fchimara.git diff --git a/src/window.c b/src/window.c index 574038a..66d708b 100644 --- a/src/window.c +++ b/src/window.c @@ -251,12 +251,10 @@ glk_window_open(winid_t split, glui32 method, glui32 size, glui32 wintype, win->insert_text_handler = g_signal_connect( G_OBJECT(textview), "key-press-event", G_CALLBACK(on_text_grid_key_press_event), win ); g_signal_handler_block( G_OBJECT(textview), win->insert_text_handler ); - /* Create a tag to indicate uneditable parts of the window (for line input) */ - gtk_text_buffer_create_tag(textbuffer, "uneditable", "editable", FALSE, "editable-set", TRUE, NULL); - /* Create a tag to indicate an editable field in the window (for line input) */ gtk_text_buffer_create_tag(textbuffer, "input_field", "background", "grey", "background-set", TRUE, + "editable", TRUE, "editable-set", TRUE, NULL); } break;