Created
May 17, 2013 21:23
-
-
Save steinsag/5602064 to your computer and use it in GitHub Desktop.
Just a small snippet of Darktable's code to create a button for the preferences dialog.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
g->description = GTK_ENTRY(gtk_entry_new()); | |
gtk_box_pack_start(box, GTK_WIDGET(g->description), FALSE, FALSE, 0); | |
g_object_set(G_OBJECT(g->description), "tooltip-text", _("description or further information"), (char *)NULL); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment