Merge lp:~gang65/messaging-app/messaging-app-chevron-down into lp:messaging-app

Proposed by Bartosz Kosiorek
Status: Needs review
Proposed branch: lp:~gang65/messaging-app/messaging-app-chevron-down
Merge into: lp:messaging-app
Diff against target: 51 lines (+6/-6)
1 file modified
src/qml/Messages.qml (+6/-6)
To merge this branch: bzr merge lp:~gang65/messaging-app/messaging-app-chevron-down
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Needs Fixing
Ubuntu Phablet Team Pending
Review via email: mp+284544@code.launchpad.net

Commit message

Use chevron pointing down for bottom edge header (lp: #1432696)

Description of the change

Use chevron pointing down for bottom edge header (lp: #1432696)

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)

Unmerged revisions

486. By Bartosz Kosiorek

Use chevron pointing down by bottom edge header.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'src/qml/Messages.qml'
--- src/qml/Messages.qml 2015-12-07 17:55:17 +0000
+++ src/qml/Messages.qml 2016-01-31 22:25:49 +0000
@@ -810,9 +810,9 @@
810 }810 }
811811
812 Action {812 Action {
813 id: backButton813 id: downButton
814 objectName: "backButton"814 objectName: "backButton"
815 iconName: "back"815 iconName: "down"
816 onTriggered: {816 onTriggered: {
817 if (typeof mainPage !== 'undefined') {817 if (typeof mainPage !== 'undefined') {
818 mainPage.temporaryProperties = null818 mainPage.temporaryProperties = null
@@ -858,7 +858,7 @@
858 head: messages.head858 head: messages.head
859 when: groupChat859 when: groupChat
860 contents: header860 contents: header
861 backAction: backButton861 backAction: downButton
862862
863 actions: [863 actions: [
864 Action {864 Action {
@@ -872,7 +872,7 @@
872 name: "unknownContact"872 name: "unknownContact"
873 head: messages.head873 head: messages.head
874 when: participants.length == 1 && contactWatcher.isUnknown874 when: participants.length == 1 && contactWatcher.isUnknown
875 backAction: backButton875 backAction: downButton
876 contents: header876 contents: header
877877
878 actions: [878 actions: [
@@ -904,7 +904,7 @@
904 name: "newMessage"904 name: "newMessage"
905 head: messages.head905 head: messages.head
906 when: participants.length === 0 && isReady906 when: participants.length === 0 && isReady
907 backAction: backButton907 backAction: downButton
908 actions: [908 actions: [
909 Action {909 Action {
910 objectName: "contactList"910 objectName: "contactList"
@@ -932,7 +932,7 @@
932 name: "knownContact"932 name: "knownContact"
933 head: messages.head933 head: messages.head
934 when: participants.length == 1 && !contactWatcher.isUnknown934 when: participants.length == 1 && !contactWatcher.isUnknown
935 backAction: backButton935 backAction: downButton
936 contents: header936 contents: header
937 actions: [937 actions: [
938 Action {938 Action {

Subscribers

People subscribed via source and target branches