diff options
Diffstat (limited to 'components/package/contents/ui/Composer.qml')
-rw-r--r-- | components/package/contents/ui/Composer.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/package/contents/ui/Composer.qml b/components/package/contents/ui/Composer.qml index 16cd9830..34fd3ca4 100644 --- a/components/package/contents/ui/Composer.qml +++ b/components/package/contents/ui/Composer.qml | |||
@@ -67,14 +67,14 @@ Item { | |||
67 | } | 67 | } |
68 | 68 | ||
69 | ComboBox { | 69 | ComboBox { |
70 | id: identityCombo | ||
70 | model: composer.identityModel | 71 | model: composer.identityModel |
72 | textRole: "name" | ||
71 | 73 | ||
72 | Layout.fillWidth: true | 74 | Layout.fillWidth: true |
73 | 75 | ||
74 | currentIndex: composer.fromIndex | ||
75 | |||
76 | onCurrentIndexChanged: { | 76 | onCurrentIndexChanged: { |
77 | composer.fromIndex = currentIndex | 77 | composer.currentIdentityIndex = currentIndex |
78 | } | 78 | } |
79 | } | 79 | } |
80 | 80 | ||