From 0cd257f55496a93972819b9ccbe6f425a06cd74c Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Mon, 27 Feb 2017 16:50:56 +0100 Subject: [PATCH] Add missing point in container name. --- source/view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/view.c b/source/view.c index 6067224d..b9845a58 100644 --- a/source/view.c +++ b/source/view.c @@ -1649,7 +1649,7 @@ int rofi_view_error_dialog ( const char *msg, int markup ) state->menu_flags = MENU_ERROR_DIALOG; state->finalize = process_result; - state->main_window = container_create ( "window box" ); + state->main_window = container_create ( "window.box" ); state->main_box = box_create ( "window.mainbox.message.box", BOX_VERTICAL ); container_add ( state->main_window, WIDGET ( state->main_box ) ); state->text = textbox_create ( "window.mainbox.message.textbox", ( TB_AUTOHEIGHT | TB_WRAP ) + ( ( markup ) ? TB_MARKUP : 0 ),