diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-21 05:52:33 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-21 05:52:33 +0800 |
commit | 7c65560f20d31f4b56cce3d3f8aee918c03dba14 (patch) | |
tree | f2dd4ed70b07714ee824dd3651c894add3457976 /ethereal/assets/qml/wallet.qml | |
parent | 245ffb1123b58bc63ee8eae6b5250001c4a427c8 (diff) | |
download | dexon-7c65560f20d31f4b56cce3d3f8aee918c03dba14.tar dexon-7c65560f20d31f4b56cce3d3f8aee918c03dba14.tar.gz dexon-7c65560f20d31f4b56cce3d3f8aee918c03dba14.tar.bz2 dexon-7c65560f20d31f4b56cce3d3f8aee918c03dba14.tar.lz dexon-7c65560f20d31f4b56cce3d3f8aee918c03dba14.tar.xz dexon-7c65560f20d31f4b56cce3d3f8aee918c03dba14.tar.zst dexon-7c65560f20d31f4b56cce3d3f8aee918c03dba14.zip |
Changed icon source
Diffstat (limited to 'ethereal/assets/qml/wallet.qml')
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index d732f2ec8..094349bab 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -292,12 +292,12 @@ ApplicationWindow { view.visible = false view.anchors.fill = mainView - if( !view.hasOwnProperty("iconFile") ) { - console.log("Could not load plugin. Property 'iconFile' not found on view."); + if( !view.hasOwnProperty("iconSource") ) { + console.log("Could not load plugin. Property 'iconSourc' not found on view."); return; } - var menuItem = menu.createMenuItem(view.iconFile, view, options); + var menuItem = menu.createMenuItem(view.iconSource, view, options); if( view.hasOwnProperty("menuItem") ) { view.menuItem = menuItem; } @@ -333,7 +333,7 @@ ApplicationWindow { property alias title: label.text property alias icon: icon.source - property alias secondary: secondary.text + property alias secondaryTitle: secondary.text width: 180 height: 28 @@ -429,7 +429,7 @@ ApplicationWindow { comp.view = view comp.title = view.title - comp.icon = view.iconFile + comp.icon = view.iconSource /* if(view.secondary !== undefined) { comp.secondary = view.secondary |