diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-20 18:26:54 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-20 18:26:54 +0700 |
commit | 621ed13c51e3effbc4ab04c832b421e62e0c898e (patch) | |
tree | f13eea74871c23a7d9853f2066e61df1732d8bb1 | |
parent | 94c6135485c5c8277e6bf3c5b729f1c8f05ab5ad (diff) |
change `components/icons` to `assets`
-rw-r--r-- | features/LoginEmailForm.ui.qml | 2 | ||||
-rw-r--r-- | features/LoginPasswordForm.ui.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/features/LoginEmailForm.ui.qml b/features/LoginEmailForm.ui.qml index b3cf24c..5a2d0bf 100644 --- a/features/LoginEmailForm.ui.qml +++ b/features/LoginEmailForm.ui.qml @@ -62,7 +62,7 @@ Page { sourceSize.width: 24 Layout.leftMargin: 16 fillMode: Image.PreserveAspectFit - source: "../components/icons/email-24px.svg" + source: "../../assets/email-24px.svg" antialiasing: true } diff --git a/features/LoginPasswordForm.ui.qml b/features/LoginPasswordForm.ui.qml index 7dc7a92..2237c13 100644 --- a/features/LoginPasswordForm.ui.qml +++ b/features/LoginPasswordForm.ui.qml @@ -63,7 +63,7 @@ Page { sourceSize.width: 24 Layout.leftMargin: 16 fillMode: Image.PreserveAspectFit - source: "../components/icons/email-24px.svg" + source: "../assets/email-24px.svg" antialiasing: true } |