I'm just trying to make the text bold in GtkLabel
. All I can find are examples for Python and C #. This is how I set up GtkLabel
s right now, but I don’t know how to get them to render text in bold.
GtkWidget* label = gtk_label_new("Text I want to be bold");
source share