Previous | Next

jpeg-save.c

Search for 'preview in image':

pg.preview = toggle =
  gtk_check_button_new_with_mnemonic
    (_("Sho_w preview in image window"));

gtk_toggle_button_set_active
    (GTK_TOGGLE_BUTTON (toggle),
     jsvals.preview);

gtk_box_pack_start (GTK_BOX (vbox),
                    toggle, FALSE,
                    FALSE, 0);

gtk_widget_show (toggle);
Use a text editor to edit code.

Any text editor is fine, but don't use a word processor -- no OpenOffice or anything like that. Code is just text.

But what's that underscore before the w?