Merge lp:~zsombi/webbrowser-app/fixToolbarCollision into lp:webbrowser-app

Proposed by Zsombor Egri
Status: Merged
Approved by: Zoltan Balogh
Approved revision: 1298
Merged at revision: 1298
Proposed branch: lp:~zsombi/webbrowser-app/fixToolbarCollision
Merge into: lp:webbrowser-app
Diff against target: 139 lines (+14/-9)
5 files modified
src/app/webbrowser/BookmarksView.qml (+3/-2)
src/app/webbrowser/BookmarksViewWide.qml (+3/-2)
src/app/webbrowser/Browser.qml (+2/-1)
src/app/webbrowser/HistoryView.qml (+3/-2)
src/app/webbrowser/HistoryViewWide.qml (+3/-2)
To merge this branch: bzr merge lp:~zsombi/webbrowser-app/fixToolbarCollision
Reviewer Review Type Date Requested Status
Zoltan Balogh (community) Approve
PS Jenkins bot continuous-integration Needs Fixing
Olivier Tilloy Approve
Review via email: mp+280916@code.launchpad.net

Commit message

Fix local Toolbar collision with UITK 1.3 Toolbar.

To post a comment you must log in.
Revision history for this message
Olivier Tilloy (osomon) wrote :

LGTM.

review: Approve
Revision history for this message
Olivier Tilloy (osomon) wrote :

Note: you’re also going to need to add https://code.launchpad.net/~osomon/webbrowser-app/workaround-1526940/+merge/280771 to silo 45 for it to successfully build.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Zoltan Balogh (bzoltan) wrote :
review: Approve
Revision history for this message
Zoltan Balogh (bzoltan) wrote :

And added the MR from Oliver's comment to the landing silo (45)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/app/webbrowser/BookmarksView.qml'
2--- src/app/webbrowser/BookmarksView.qml 2015-11-12 16:16:45 +0000
3+++ src/app/webbrowser/BookmarksView.qml 2015-12-17 20:26:43 +0000
4@@ -20,6 +20,7 @@
5 import Ubuntu.Components 1.3
6 import Ubuntu.Components.ListItems 1.3 as ListItems
7 import webbrowserapp.private 0.1
8+import "." as Local
9
10 FocusScope {
11 id: bookmarksView
12@@ -58,7 +59,7 @@
13 }
14 }
15
16- Toolbar {
17+ Local.Toolbar {
18 id: topBar
19
20 height: units.gu(7)
21@@ -90,7 +91,7 @@
22 }
23 }
24
25- Toolbar {
26+ Local.Toolbar {
27 id: toolbar
28 height: units.gu(7)
29
30
31=== modified file 'src/app/webbrowser/BookmarksViewWide.qml'
32--- src/app/webbrowser/BookmarksViewWide.qml 2015-11-12 16:16:45 +0000
33+++ src/app/webbrowser/BookmarksViewWide.qml 2015-12-17 20:26:43 +0000
34@@ -20,6 +20,7 @@
35 import Ubuntu.Components 1.3
36 import Ubuntu.Components.ListItems 1.3 as ListItems
37 import webbrowserapp.private 0.1
38+import "." as Local
39
40 FocusScope {
41 id: bookmarksViewWide
42@@ -56,7 +57,7 @@
43 }
44 }
45
46- Toolbar {
47+ Local.Toolbar {
48 id: topBar
49
50 height: units.gu(7)
51@@ -88,7 +89,7 @@
52 }
53 }
54
55- Toolbar {
56+ Local.Toolbar {
57 id: toolbar
58 height: units.gu(7)
59
60
61=== modified file 'src/app/webbrowser/Browser.qml'
62--- src/app/webbrowser/Browser.qml 2015-12-04 11:06:47 +0000
63+++ src/app/webbrowser/Browser.qml 2015-12-17 20:26:43 +0000
64@@ -28,6 +28,7 @@
65 import "../UrlUtils.js" as UrlUtils
66 import ".."
67 import "."
68+import "." as Local
69
70 BrowserView {
71 id: browser
72@@ -365,7 +366,7 @@
73 onTabClosed: internal.closeTab(index)
74 }
75
76- Toolbar {
77+ Local.Toolbar {
78 id: recentToolbar
79 objectName: "recentToolbar"
80
81
82=== modified file 'src/app/webbrowser/HistoryView.qml'
83--- src/app/webbrowser/HistoryView.qml 2015-11-23 09:41:48 +0000
84+++ src/app/webbrowser/HistoryView.qml 2015-12-17 20:26:43 +0000
85@@ -20,6 +20,7 @@
86 import Ubuntu.Components 1.3
87 import Ubuntu.Components.ListItems 1.3 as ListItems
88 import webbrowserapp.private 0.1
89+import "." as Local
90
91 Item {
92 id: historyView
93@@ -94,7 +95,7 @@
94 }
95 }
96
97- Toolbar {
98+ Local.Toolbar {
99 id: toolbar
100 height: units.gu(7)
101
102@@ -137,7 +138,7 @@
103 }
104 }
105
106- Toolbar {
107+ Local.Toolbar {
108 id: topBar
109
110 visible: domainsListView.ViewItems.selectMode
111
112=== modified file 'src/app/webbrowser/HistoryViewWide.qml'
113--- src/app/webbrowser/HistoryViewWide.qml 2015-12-04 11:06:47 +0000
114+++ src/app/webbrowser/HistoryViewWide.qml 2015-12-17 20:26:43 +0000
115@@ -21,6 +21,7 @@
116 import Ubuntu.Components.ListItems 1.3 as ListItems
117 import webbrowserapp.private 0.1
118 import "Highlight.js" as Highlight
119+import "." as Local
120
121 FocusScope {
122 id: historyViewWide
123@@ -345,7 +346,7 @@
124 }
125 }
126
127- Toolbar {
128+ Local.Toolbar {
129 id: topBar
130
131 height: units.gu(7)
132@@ -484,7 +485,7 @@
133 }
134 }
135
136- Toolbar {
137+ Local.Toolbar {
138 id: bottomToolbar
139 height: units.gu(7)
140

Subscribers

People subscribed via source and target branches

to status/vote changes: