diff --git a/retroshare-qml-app/src/ChatView.qml b/retroshare-qml-app/src/ChatView.qml index 3cbc41b72..144d77e29 100644 --- a/retroshare-qml-app/src/ChatView.qml +++ b/retroshare-qml-app/src/ChatView.qml @@ -144,7 +144,7 @@ Item border.color: inferiorPanel.styles.borderColor } - BtnIcon + ButtonIcon { id: attachButton @@ -263,7 +263,7 @@ Item } } - BtnIcon + ButtonIcon { id: emojiButton @@ -290,7 +290,7 @@ Item } - BtnIcon + ButtonIcon { id: sendButton diff --git a/retroshare-qml-app/src/components/BtnIcon.qml b/retroshare-qml-app/src/components/ButtonIcon.qml similarity index 100% rename from retroshare-qml-app/src/components/BtnIcon.qml rename to retroshare-qml-app/src/components/ButtonIcon.qml diff --git a/retroshare-qml-app/src/components/Btn.qml b/retroshare-qml-app/src/components/ButtonText.qml similarity index 100% rename from retroshare-qml-app/src/components/Btn.qml rename to retroshare-qml-app/src/components/ButtonText.qml diff --git a/retroshare-qml-app/src/components/SideBar.qml b/retroshare-qml-app/src/components/SideBar.qml index 0361c23eb..d460195ad 100644 --- a/retroshare-qml-app/src/components/SideBar.qml +++ b/retroshare-qml-app/src/components/SideBar.qml @@ -111,7 +111,7 @@ Drawer } } - Btn + ButtonText { buttonText: model.title width: parent.width diff --git a/retroshare-qml-app/src/main-app.qml b/retroshare-qml-app/src/main-app.qml index 17634d741..f98f66fa7 100644 --- a/retroshare-qml-app/src/main-app.qml +++ b/retroshare-qml-app/src/main-app.qml @@ -153,7 +153,7 @@ ApplicationWindow } - BtnIcon + ButtonIcon { property bool searchIconVisibility: false property var onClickCB: function (){} @@ -190,7 +190,7 @@ ApplicationWindow Component { id: rsIcon - BtnIcon + ButtonIcon { height: imageLoader.height width: imageLoader.height diff --git a/retroshare-qml-app/src/qml.qrc b/retroshare-qml-app/src/qml.qrc index fb2a636f0..11258ef48 100644 --- a/retroshare-qml-app/src/qml.qrc +++ b/retroshare-qml-app/src/qml.qrc @@ -31,7 +31,7 @@ ChatBubbleDelegate.qml icons/send-message.svg icons/attach.svg - components/BtnIcon.qml + components/ButtonIcon.qml icons/smiley.svg icons/microphone_mute.svg icons/microphone.svg @@ -40,7 +40,7 @@ components/AvatarOrColorHash.qml components/SideBar.qml styles/SideBarStyle.qml - components/Btn.qml + components/ButtonText.qml icons/netgraph.svg icons/search.svg icons/exit.svg