Crap. This patch was overlooked. Screenshots don't work w/o it.
Bump package version.
This commit is contained in:
parent
86ac04f393
commit
55110a9e07
@ -1,8 +1,9 @@
|
||||
# $OpenBSD: Makefile,v 1.9 2005/05/26 22:54:07 marcm Exp $
|
||||
# $OpenBSD: Makefile,v 1.10 2005/05/27 17:27:08 marcm Exp $
|
||||
|
||||
COMMENT= "GNOME utility programs"
|
||||
|
||||
DISTNAME= gnome-utils-2.10.1
|
||||
PKGNAME= ${DISTNAME}p0
|
||||
CATEGORIES= x11/gnome
|
||||
|
||||
HOMEPAGE= http://www.gnome.org/
|
||||
|
@ -0,0 +1,29 @@
|
||||
--- gnome-screenshot/screenshot-save.c.orig Mon Nov 1 12:56:19 2004
|
||||
+++ gnome-screenshot/screenshot-save.c Thu May 26 10:36:37 2005
|
||||
@@ -94,16 +94,20 @@ read_pipe_from_child (GIOChannel *sour
|
||||
gchar *message = NULL;
|
||||
gchar *error_message = NULL;
|
||||
GtkWidget *dialog;
|
||||
+ GIOStatus status;
|
||||
|
||||
- g_io_channel_read_line (source, &error_message, NULL, NULL, NULL);
|
||||
- message = g_strdup_printf ("Unable to save the screenshot to disk:\n\n%s", error_message);
|
||||
- dialog = gtk_message_dialog_new (NULL, 0,
|
||||
+ status = g_io_channel_read_line (source, &error_message, NULL, NULL, NULL);
|
||||
+ if (status == G_IO_STATUS_NORMAL)
|
||||
+ {
|
||||
+ message = g_strdup_printf ("Unable to save the screenshot to disk:\n\n%s", error_message);
|
||||
+ dialog = gtk_message_dialog_new (NULL, 0,
|
||||
GTK_MESSAGE_ERROR,
|
||||
GTK_BUTTONS_OK,
|
||||
message);
|
||||
- gtk_dialog_run (GTK_DIALOG (dialog));
|
||||
- gtk_widget_destroy (dialog);
|
||||
- exit (1);
|
||||
+ gtk_dialog_run (GTK_DIALOG (dialog));
|
||||
+ gtk_widget_destroy (dialog);
|
||||
+ exit (1);
|
||||
+ }
|
||||
}
|
||||
|
||||
(*save_callback) (save_user_data);
|
Loading…
Reference in New Issue
Block a user