diff options
| -rw-r--r-- | Header.ui.qml | 15 | 
1 files changed, 10 insertions, 5 deletions
diff --git a/Header.ui.qml b/Header.ui.qml index 7e4cf25..2370c7b 100644 --- a/Header.ui.qml +++ b/Header.ui.qml @@ -41,7 +41,8 @@ ToolBar {  			verticalCenter: parent.verticalCenter  		}  		icon { -			source: "https://eduport.webestica.com/assets/images/logo.svg" +			source: +			"https://eduport.webestica.com/assets/images/logo.svg"  			width: 115  		}  		background: Rectangle { @@ -144,13 +145,17 @@ ToolBar {  			}  			Action { -				icon.source:"https://eduport.webestica.com/assets/images/book/02.jpg" -				text: "Angular 4 Tutorial in audio (Compact Disk)" +				icon.source: +				"https://eduport.webestica.com/assets/images/book/02.jpg" +				text: +				"Angular 4 Tutorial in audio (Compact Disk)"  			}  			Action { -				icon.source:"https://eduport.webestica.com/assets/images/book/04.jpg" -				text: "The Principles of Beautiful Graphics Design (Paperback)" +				icon.source: +				"https://eduport.webestica.com/assets/images/book/04.jpg" +				text: +				"The Principles of Beautiful Graphics Design (Paperback)"  			}  			Loader {  |