Merge lp:~xnox/ubiquity/move-back-button into lp:ubiquity

Proposed by Dimitri John Ledkov
Status: Rejected
Rejected by: Dimitri John Ledkov
Proposed branch: lp:~xnox/ubiquity/move-back-button
Merge into: lp:ubiquity
Diff against target: 113 lines (+14/-24)
3 files modified
debian/changelog (+8/-0)
gui/gtk/ubiquity.ui (+6/-20)
ubiquity/frontend/gtk_ui.py (+0/-4)
To merge this branch: bzr merge lp:~xnox/ubiquity/move-back-button
Reviewer Review Type Date Requested Status
Dimitri John Ledkov Disapprove
Xi Zhu visual-design Pending
Christina Li ux-design Pending
Review via email: mp+167224@code.launchpad.net

Description of the change

  * Navigation control changes:
    - Move back button to the left.
    - Remove quit button.

To post a comment you must log in.
Revision history for this message
Dimitri John Ledkov (xnox) wrote :
Revision history for this message
Adolfo Jayme Barrientos (fitojb) wrote :

It’s been over a year now. What if you go ahead with this change instead of waiting on an unresponsive design team?

Revision history for this message
Dimitri John Ledkov (xnox) :
review: Disapprove

Unmerged revisions

5936. By Dimitri John Ledkov

* Navigation control changes:
  - Move back button to the left.
  - Remove quit button.

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 2013-05-29 11:10:06 +0000
3+++ debian/changelog 2013-06-04 10:11:39 +0000
4@@ -1,3 +1,11 @@
5+ubiquity (2.15.6ubuntu1) UNRELEASED; urgency=low
6+
7+ * Navigation control changes:
8+ - Move back button to the left.
9+ - Remove quit button.
10+
11+ -- Dmitrijs Ledkovs <dmitrij.ledkov@ubuntu.com> Tue, 04 Jun 2013 10:54:23 +0100
12+
13 ubiquity (2.15.6) saucy; urgency=low
14
15 * Merge U1 plugin, without activating it by default at the moment. This
16
17=== modified file 'gui/gtk/ubiquity.ui'
18--- gui/gtk/ubiquity.ui 2013-03-15 13:03:27 +0000
19+++ gui/gtk/ubiquity.ui 2013-06-04 10:11:39 +0000
20@@ -777,6 +777,7 @@
21 <object class="GtkBox" id="hbox_navigation">
22 <property name="visible">True</property>
23 <property name="can_focus">False</property>
24+ <property name="orientation">vertical</property>
25 <child>
26 <object class="GtkAlignment" id="alignment1">
27 <property name="visible">True</property>
28@@ -785,6 +786,7 @@
29 <object class="GtkBox" id="hbox_connecting">
30 <property name="visible">True</property>
31 <property name="can_focus">False</property>
32+ <property name="halign">start</property>
33 <property name="spacing">6</property>
34 <child>
35 <object class="GtkSpinner" id="connecting_spinner">
36@@ -823,20 +825,21 @@
37 <property name="spacing">6</property>
38 <property name="layout_style">end</property>
39 <child>
40- <object class="GtkButton" id="quit">
41- <property name="label">gtk-quit</property>
42+ <object class="GtkButton" id="back">
43+ <property name="label">gtk-go-back</property>
44 <property name="visible">True</property>
45 <property name="can_focus">True</property>
46 <property name="can_default">True</property>
47 <property name="receives_default">True</property>
48 <property name="use_underline">True</property>
49 <property name="use_stock">True</property>
50- <signal name="clicked" handler="on_quit_clicked" swapped="no"/>
51+ <signal name="clicked" handler="on_back_clicked" swapped="no"/>
52 </object>
53 <packing>
54 <property name="expand">False</property>
55 <property name="fill">False</property>
56 <property name="position">0</property>
57+ <property name="secondary">True</property>
58 </packing>
59 </child>
60 <child>
61@@ -851,23 +854,6 @@
62 <packing>
63 <property name="expand">False</property>
64 <property name="fill">True</property>
65- <property name="position">1</property>
66- </packing>
67- </child>
68- <child>
69- <object class="GtkButton" id="back">
70- <property name="label">gtk-go-back</property>
71- <property name="visible">True</property>
72- <property name="can_focus">True</property>
73- <property name="can_default">True</property>
74- <property name="receives_default">True</property>
75- <property name="use_underline">True</property>
76- <property name="use_stock">True</property>
77- <signal name="clicked" handler="on_back_clicked" swapped="no"/>
78- </object>
79- <packing>
80- <property name="expand">False</property>
81- <property name="fill">False</property>
82 <property name="position">2</property>
83 </packing>
84 </child>
85
86=== modified file 'ubiquity/frontend/gtk_ui.py'
87--- ubiquity/frontend/gtk_ui.py 2013-05-29 09:22:35 +0000
88+++ ubiquity/frontend/gtk_ui.py 2013-06-04 10:11:39 +0000
89@@ -929,7 +929,6 @@
90 self.live_installer.set_title(
91 self.get_string('oem_user_config_title'))
92 self.live_installer.set_icon_name("preferences-system")
93- self.quit.hide()
94 self.back.hide()
95
96 self.progress_section.show()
97@@ -1016,7 +1015,6 @@
98
99 gsettings.set(gs_schema, gs_key, True)
100
101- self.quit.hide()
102 f = (Gdk.WMFunction.RESIZE | Gdk.WMFunction.MAXIMIZE |
103 Gdk.WMFunction.MOVE)
104 if not 'UBIQUITY_ONLY' in os.environ:
105@@ -1044,8 +1042,6 @@
106 gs_value = self.gsettings_previous[gs_previous]
107 gsettings.set(gs_schema, gs_key, gs_value)
108
109- if not self.oem_user_config:
110- self.quit.show()
111 f = Gdk.WMFunction.RESIZE | Gdk.WMFunction.MAXIMIZE | \
112 Gdk.WMFunction.MOVE | Gdk.WMFunction.CLOSE
113 if not 'UBIQUITY_ONLY' in os.environ:

Subscribers

People subscribed via source and target branches

to status/vote changes: