~ghugesss/xpad/refactor_code

« back to all changes in this revision

Viewing changes to src/help.c

  • Committer: Arthur Borsboom
  • Date: 2014-06-20 00:28:20 UTC
  • mfrom: (665.1.67 xpad-4.3)
  • Revision ID: arthurborsboom@gmail.com-20140620002820-c4nuneh78qv4pu31
    Arthur Borsboom 2014-06-20 * Fix: reduced code by using existing functions, merging functions, removing obsolete code and duplicate texts
    Arthur Borsboom 2014-06-19 * Fix: Another try to prevent an error loop on application exit

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
        g_signal_connect (dialog, "destroy", G_CALLBACK (help_close), NULL);
85
85
        g_signal_connect_swapped (GTK_BUTTON (button), "clicked", G_CALLBACK (gtk_widget_destroy), dialog);
86
86
        
87
 
        gtk_window_set_resizable (dialog, FALSE);
 
87
        gtk_window_set_resizable (dialog, TRUE);
88
88
        gtk_widget_show_all (GTK_WIDGET (dialog));
89
89
        
90
90
        return dialog;