Merge lp:~bilalakhtar/ubuntu/maverick/gnome-disk-utility/fix-414107 into lp:ubuntu/maverick/gnome-disk-utility

Proposed by Bilal Akhtar
Status: Merged
Merge reported by: Bilal Akhtar
Merged at revision: not available
Proposed branch: lp:~bilalakhtar/ubuntu/maverick/gnome-disk-utility/fix-414107
Merge into: lp:ubuntu/maverick/gnome-disk-utility
Diff against target: 71 lines (+40/-1)
4 files modified
debian/changelog (+9/-0)
debian/control (+2/-1)
debian/patches/02_add_scrolled_window.patch (+28/-0)
debian/patches/series (+1/-0)
To merge this branch: bzr merge lp:~bilalakhtar/ubuntu/maverick/gnome-disk-utility/fix-414107
Reviewer Review Type Date Requested Status
Ubuntu Sponsors Pending
Review via email: mp+32966@code.launchpad.net

Description of the change

Patch fixes bug #414107 .

To post a comment you must log in.
24. By Bilal Akhtar

Ran Update-maintainer

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2010-04-04 23:58:54 +0000
3+++ debian/changelog 2010-08-18 09:07:46 +0000
4@@ -1,3 +1,12 @@
5+gnome-disk-utility (2.30.1-1ubuntu1) maverick; urgency=low
6+
7+ * debian/patches/02_add_scrolled_window.patch:
8+ - Add a scrolled window as a parent to the main VBox in the application
9+ to make it more accessible from computers having smaller screens.
10+ Thanks to David Chang for the initial patch. (LP: #414107)
11+
12+ -- Bilal Akhtar <bilalakhtar@ubuntu.com> Wed, 18 Aug 2010 11:48:17 +0300
13+
14 gnome-disk-utility (2.30.1-1) unstable; urgency=low
15
16 * New upstream release:
17
18=== modified file 'debian/control'
19--- debian/control 2010-03-16 14:56:07 +0000
20+++ debian/control 2010-08-18 09:07:46 +0000
21@@ -1,7 +1,8 @@
22 Source: gnome-disk-utility
23 Section: admin
24 Priority: optional
25-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org>
26+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
27+XSBC-Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org>
28 Uploaders: Michael Biebl <biebl@debian.org>, Martin Pitt <mpitt@debian.org>
29 Build-Depends: debhelper (>= 7),
30 cdbs,
31
32=== added file 'debian/patches/02_add_scrolled_window.patch'
33--- debian/patches/02_add_scrolled_window.patch 1970-01-01 00:00:00 +0000
34+++ debian/patches/02_add_scrolled_window.patch 2010-08-18 09:07:46 +0000
35@@ -0,0 +1,28 @@
36+Description: Patch to make application better for small screens
37+ This patch adds a scrolled window to the main VBox of the application
38+ to make it accessible with computers having small screens.
39+Author: Bilal Akhtar <bilalakhtar@ubuntu.com>
40+Bug-Ubuntu: https://bugs.edge.launchpad.net/ubuntu/+source/gnome-disk-utility/+bug/414107
41+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=589502
42+Forwarded: https://bugzilla.gnome.org/show_bug.cgi?id=594088
43+--- a/src/palimpsest/gdu-shell.c
44++++ b/src/palimpsest/gdu-shell.c
45+@@ -1096,6 +1096,7 @@
46+ GtkAccelGroup *accel_group;
47+ GtkWidget *hpane;
48+ GtkWidget *tree_view_scrolled_window;
49++ GtkWidget *hpane_right_scrolled_window;
50+ GtkTreeSelection *select;
51+ GtkWidget *label;
52+ GtkTreeViewColumn *column;
53+@@ -1153,7 +1154,9 @@
54+
55+ shell->priv->sections_vbox = gtk_vbox_new (FALSE, 12);
56+ gtk_container_set_border_width (GTK_CONTAINER (shell->priv->sections_vbox), 6);
57+- gtk_box_pack_start (GTK_BOX (vbox2), shell->priv->sections_vbox, TRUE, TRUE, 0);
58++ hpane_right_scrolled_window = gtk_scrolled_window_new (NULL, NULL);
59++ gtk_scrolled_window_add_with_viewport(hpane_right_scrolled_window, shell->priv->sections_vbox);
60++ gtk_box_pack_start (GTK_BOX (vbox2), hpane_right_scrolled_window, TRUE, TRUE, 0);
61+
62+ /* setup and add horizontal pane */
63+ hpane = gtk_hpaned_new ();
64
65=== modified file 'debian/patches/series'
66--- debian/patches/series 2010-02-15 08:36:50 +0000
67+++ debian/patches/series 2010-08-18 09:07:46 +0000
68@@ -1,2 +1,3 @@
69 # Debian patches for gnome-disk-utility
70 01_delay_autostart.patch
71+02_add_scrolled_window.patch

Subscribers

People subscribed via source and target branches

to all changes: