mirror of
https://github.com/lbonn/rofi
synced 2024-11-15 08:37:17 +00:00
Revert part of commit e7b18d3a88
Allow markup to be set via textbox flags.
This commit is contained in:
parent
37578dff20
commit
2cc2522e57
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ static void __textbox_update_pango_text ( textbox *tb )
|
|||
pango_layout_set_attributes ( tb->layout, NULL );
|
||||
pango_layout_set_text ( tb->layout, string, l );
|
||||
}
|
||||
else if ( tb->tbft & MARKUP ) {
|
||||
else if ( tb->flags & TB_MARKUP || tb->tbft & MARKUP ) {
|
||||
pango_layout_set_markup ( tb->layout, tb->text, -1 );
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue