Attached is the debdiff of the patch.
diff -u gnome-disk-utility-2.30.1/debian/changelog gnome-disk-utility-2.30.1/debian/changelog --- gnome-disk-utility-2.30.1/debian/changelog +++ gnome-disk-utility-2.30.1/debian/changelog @@ -1,3 +1,13 @@ +gnome-disk-utility (2.30.1-1.1) unstable; urgency=low + + * Non-maintainer upload + * debian/patches/02_add_scrolled_window.patch: + - Modify file src/palimpsest/gdu-shell.c to add a scrolled window as a + parent of the main VBox to make application accessible to computers + with smaller screens. (Closes: #589502) + + -- Bilal Akhtar <bilalakhta...@yahoo.com> Sun, 25 Jul 2010 10:39:29 +0530 + gnome-disk-utility (2.30.1-1) unstable; urgency=low * New upstream release: diff -u gnome-disk-utility-2.30.1/debian/patches/series gnome-disk-utility-2.30.1/debian/patches/series --- gnome-disk-utility-2.30.1/debian/patches/series +++ gnome-disk-utility-2.30.1/debian/patches/series @@ -2,0 +3 @@ +02_add_scrolled_window.patch only in patch2: unchanged: --- gnome-disk-utility-2.30.1.orig/debian/patches/02_add_scrolled_window.patch +++ gnome-disk-utility-2.30.1/debian/patches/02_add_scrolled_window.patch @@ -0,0 +1,28 @@ +Description: Patch to fix bug #589502 + This patch modifies file src/palimpsest/gdu-shell.c and adds a scrolled + window as a parent to the main vbox so that the vbox can be easily scrolled + and accessed on smaller screens. This patch fixes bug #589502 . +Author: Bilal Akhtar <bilalakhta...@yahoo.com> +Bug-Debian: http://bugs.debian.org/589502 +Forwarded: https://bugzilla.gnome.org/show_bug.cgi?id=594088 +--- a/src/palimpsest/gdu-shell.c ++++ b/src/palimpsest/gdu-shell.c +@@ -1096,6 +1096,7 @@ + GtkAccelGroup *accel_group; + GtkWidget *hpane; + GtkWidget *tree_view_scrolled_window; ++ GtkWidget *hpane_right_scrolled_window; + GtkTreeSelection *select; + GtkWidget *label; + GtkTreeViewColumn *column; +@@ -1153,7 +1154,9 @@ + + shell->priv->sections_vbox = gtk_vbox_new (FALSE, 12); + gtk_container_set_border_width (GTK_CONTAINER (shell->priv->sections_vbox), 6); +- gtk_box_pack_start (GTK_BOX (vbox2), shell->priv->sections_vbox, TRUE, TRUE, 0); ++ hpane_right_scrolled_window = gtk_scrolled_window_new (NULL, NULL); ++ gtk_scrolled_window_add_with_viewport(hpane_right_scrolled_window, shell->priv->sections_vbox); ++ gtk_box_pack_start (GTK_BOX (vbox2), hpane_right_scrolled_window, TRUE, TRUE, 0); + + /* setup and add horizontal pane */ + hpane = gtk_hpaned_new ();
signature.asc
Description: This is a digitally signed message part