Skip to content
Snippets Groups Projects
Commit d02a0f8a authored by Arkadiy Illarionov's avatar Arkadiy Illarionov
Browse files

title: Fix width in expand mode

parent 3d156ee4
No related branches found
No related tags found
1 merge request!98title: Fix width in expand mode
Pipeline #25173 passed
......@@ -231,10 +231,11 @@ void resize_title (WckTitlePlugin *wtp)
gtk_label_set_max_width_chars (wtp->title, wtp->prefs->title_size);
break;
case EXPAND:
gtk_label_set_width_chars (wtp->title, TITLE_SIZE_MAX);
gtk_label_set_max_width_chars (wtp->title, TITLE_SIZE_MAX);
break;
default:
gtk_label_set_width_chars (wtp->title, wtp->prefs->title_size);
break;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment