Merge lp:~vthompson/ubuntu-rssreader-app/show-osk into lp:~ubuntu-shorts-dev/ubuntu-rssreader-app/trunk

Proposed by Victor Thompson
Status: Rejected
Rejected by: Joey Chan
Proposed branch: lp:~vthompson/ubuntu-rssreader-app/show-osk
Merge into: lp:~ubuntu-shorts-dev/ubuntu-rssreader-app/trunk
Diff against target: 51 lines (+11/-20)
1 file modified
feeds/EditFeed.qml (+11/-20)
To merge this branch: bzr merge lp:~vthompson/ubuntu-rssreader-app/show-osk
Reviewer Review Type Date Requested Status
Ubuntu Phone Apps Jenkins Bot continuous-integration Needs Fixing
Roman Shchekin Disapprove
Review via email: mp+201303@code.launchpad.net

Commit message

Allow text fields to trigger OSK.

Description of the change

Allow text fields to trigger OSK.

To post a comment you must log in.
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Roman Shchekin (mrqtros) wrote :

As Joey already answered in email, it's design team decision.

review: Disapprove
159. By Victor Thompson

Update Feed labels.

Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Needs Fixing (continuous-integration)

Unmerged revisions

159. By Victor Thompson

Update Feed labels.

158. By Victor Thompson

Allow text fields to trigger OSK.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'feeds/EditFeed.qml'
2--- feeds/EditFeed.qml 2013-11-25 14:20:53 +0000
3+++ feeds/EditFeed.qml 2014-01-12 22:05:07 +0000
4@@ -128,18 +128,10 @@
5 Label
6 {
7 id: labelTitle
8- text: i18n.tr("Title: ")
9- width: units.gu(6)
10- anchors.verticalCenter: parent.verticalCenter
11- }
12-
13- TextField
14- {
15 text: feedTitle
16- width: parent.width - labelTitle.width - parent.spacing
17+ fontSize: "medium"
18+ width: parent.width
19 anchors.verticalCenter: parent.verticalCenter
20- readOnly: true
21- hasClearButton: false
22 }
23 }
24
25@@ -151,18 +143,17 @@
26 Label
27 {
28 id: labelURL
29- text: i18n.tr("URL: ")
30+ text: feedURL
31+ fontSize: "small"
32+ font.italic: true
33 width: labelTitle.width
34 anchors.verticalCenter: parent.verticalCenter
35- }
36-
37- TextField
38- {
39- text: feedURL
40- width: parent.width - labelURL.width - parent.spacing
41- anchors.verticalCenter: parent.verticalCenter
42- readOnly: true
43- hasClearButton: false
44+
45+ MouseArea {
46+ anchors.fill: parent
47+ onClicked: Qt.openUrlExternally(feedURL)
48+ }
49+
50 }
51 }
52

Subscribers

People subscribed via source and target branches