1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-02-10 15:44:41 -05:00

Set separator name

This commit is contained in:
Dave Davenport 2016-12-11 12:55:09 +01:00
parent 1dfac3c4da
commit 7ad0432d82

View file

@ -1482,7 +1482,7 @@ RofiViewState *rofi_view_create ( Mode *sw,
if ( message ) {
textbox *message_tb = textbox_create ( TB_AUTOHEIGHT | TB_MARKUP | TB_WRAP, 0, 0,
state->width - ( 2 * ( state->border ) ), -1, NORMAL, message );
separator *sep = separator_create ( "separator", S_HORIZONTAL, 2 );
separator *sep = separator_create ( "separator.message", S_HORIZONTAL, 2 );
box_add ( state->main_box, WIDGET ( sep ), FALSE, end);
box_add ( state->main_box, WIDGET ( message_tb ), FALSE, end);
}