Comment 3 for bug 244968

Revision history for this message
Thierry Carrez (ttx) wrote :

The resulting packages still need to be tested.

In addition to the new upsteam version, I dropped the fix_window_close patch which was integrated upstream (without the GTK_RESPONSE_NONE case which was probably overkill, testing required), and the quilt patch system (no more patches).

The patch :

     case JOINDIALOG_CLOSE:
+ case GTK_RESPONSE_NONE:
+ case GTK_RESPONSE_DELETE_EVENT:
  quit = TRUE;
  break;

The new code :

    case JOINDIALOG_CLOSE:
    case GTK_RESPONSE_DELETE_EVENT:
 quit = TRUE;
 break;